Custom Screener – Dax 40
- This topic has 3 replies, 2 voices, and was last updated 3 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
Forums › ProRealTime English forum › ProScreener support › Custom Screener – Dax 40
Hi all,
New user to this community forum and wanted to see if I could ask for assistance or be pointed in the right direction.
I am a novice user of IG Pro Real Time and would like to setup a custom screener specifically for the DAX 40 on a 10-mintue chart using RSI indicator.
Would like to setup automatic alerts each time the market breaks above 70 and or below 30.
The alerts to be audio/visual/email and send alert on the mobile app.
Any help would be greatly appreciated.
Thank you.
There you go:
|
1 2 3 4 5 6 7 8 |
myRSI = Rsi[14](close) Signal = 0 IF myRSI CROSSES OVER 70 THEN Signal = 1 ELSIF myRSI CROSSES UNDER 30 THEN Signal = 2 ENDIF SCREENER[Signal](Signal AS "1=Up, 2=Down") |
a sound will alert you when a new asset meets the criteria.
As to the mobile platform, I never used it, but if it allows screeners then it should beep as well.
Of course the platform, on either the desktop PC or the Mobile device (or on both of them) needs to be open and running to work.
Thanks for the information.
Is this code to be used as custom pro screener or customer alert?
Where do I type in this code?
In ProScreener, as you asked.
To set alerts through the BELL icon, you need an indicator. This is the same code as an indicator that you can add below your chart (like RSI, MACD, etc…), then set an alert manually as you prefer, checking 1 for LONG signals and 2 for SHORT signals:
|
1 2 3 4 5 6 7 8 |
myRSI = Rsi[14](close) Signal = 0 IF myRSI CROSSES OVER 70 THEN Signal = 1 ELSIF myRSI CROSSES UNDER 30 THEN Signal = 2 ENDIF RETURN Signal "1=Up, 2=Down" |