Help me for Edit the indicator

 

hi i m Marco from Italy and sorry if my English is not good ok?

I have one problem, i have the indicator RSI Blackfeet, is very nice indicator but i want insert sound alarm when the condition is true, this indicator have RSI and MA i want insert alert when RSI cross MA.

Please help me tanks

bye

Files:
 
MarcoCC: i want
learn to code it, or pay someone. We're not going to code it FOR you. We are willing to HELP you when you post your attempt (using SRC) and the nature of your problem.
double  ma1=  iMA(...1);
double  ma2=  iMA(...2);
double rsi1= iRSI(...1);
double rsi2= iRSI(...2);
bool wasUp = rsi2 > ma2;
bool  isUp = rsi1 > ma1;
bool isCross wasUp != isUp;
if(isCross) Alert(...);
Reason: