Custom Screener – Dax 40
Forums › ProRealTime English forum › ProScreener support › Custom Screener – Dax 40
- This topic has 3 replies, 2 voices, and was last updated 2 days ago by
robertogozzi.
-
-
08/08/2025 at 12:16 PM #249504
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.
08/08/2025 at 12:25 PM #249507There you go:
12345678myRSI = Rsi[14](close)Signal = 0IF myRSI CROSSES OVER 70 THENSignal = 1ELSIF myRSI CROSSES UNDER 30 THENSignal = 2ENDIFSCREENER[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.
08/08/2025 at 1:19 PM #249511Thanks for the information.
Is this code to be used as custom pro screener or customer alert?
Where do I type in this code?
08/08/2025 at 9:11 PM #249525In 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:
12345678myRSI = Rsi[14](close)Signal = 0IF myRSI CROSSES OVER 70 THENSignal = 1ELSIF myRSI CROSSES UNDER 30 THENSignal = 2ENDIFRETURN Signal "1=Up, 2=Down" -
AuthorPosts