RSI with MA on MT5 - page 3

 
Fernando Carreiro #:
//--- create handle of the indicator iRSI    handle_iRSI=iRSI(Symbol(),Period(),Inp_RSI_ma_period,Inp_MA_applied_price); //--- create handle of the indicator iMA    handle_iMAOnRSI=iMA(Symbol(),Period(),Inp_MA_ma_period,Inp_MA_ma_shift,                        Inp_MA_ma_method,handle_iRSI);

Thank you very much Fernando, I will try it. Regards...

 
It is impossible to write such intersections in code, because this is just a game on a graphical scale. The structure of indicators is very diverse. But if you don't understand how they work, you can throw them at each other)))))))
 
Dz Mak #: It is impossible to write such intersections in code, because this is just a game on a graphical scale. The structure of indicators is very diverse. But if you don't understand how they work, you can throw them at each other)))))))
You misunderstand. They are not talking about RSI(price) + MA(price). That is, as you say, nonsense. They are talking about RSI(price) + MA(RSI)
This website uses cookies. Learn more about our Cookies Policy.