Let's say I want to setup an alert based on whether an indicator (like RSI), rises above a certain level? Can I do that and if yes, how?
- Indicators with alerts/signal
- Examples: Construction of Fractal Lines
- Alert on Price
adevore:
Let's say I want to setup an alert based on whether an indicator (like RSI), rises above a certain level? Can I do that and if yes, how?
Let's say I want to setup an alert based on whether an indicator (like RSI), rises above a certain level? Can I do that and if yes, how?
Yes, . . .
double A_Variable; if(iRSI() > A_Variable) Alert();
RaptorUK:
Yes, . . .
Sounds good. Can you just be a little more specific? Where do I insert the 25, and where do I place all that code? I want to be alerted when RSI hits 25 or dips below.
adevore:
Sounds good. Can you just be a little more specific? Where do I insert the 25, and where do I place all that code? I want to be alerted when RSI hits 25 or dips below.
I can but I won't . . I'm not going to write your code for you, I don't have time, sorry.
Sounds good. Can you just be a little more specific? Where do I insert the 25, and where do I place all that code? I want to be alerted when RSI hits 25 or dips below.
adevore:
Sounds good. Can you just be a little more specific? Where do I insert the 25, and where do I place all that code? I want to be alerted when RSI hits 25 or dips below.
Sounds good. Can you just be a little more specific? Where do I insert the 25, and where do I place all that code? I want to be alerted when RSI hits 25 or dips below.
extern int PeriodRSI = 14; extern double A_Variable = 25; Start(); if(iRSI(NULL,0,PeriodRSI,PRICE_CLOSE,0) <= A_Variable)Alert(); Return(0);
.. A little bit more specific
. This will alert when RSI hits 25 or dips below.

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register