MAOnStochastic
Индикатор MAOnStochastic представляет из себя некоторую модификацию уже известных индикаторов. Добавлена третья линия - Stochastic сглаженный при помощи индикатора iMA (Moving Average, MA). По своей сути - это сигнальная линия Stochastic, только выполненная через другую технологию - создание хендла индикатора iMA на базе Stochastic.
//--- create handle of the indicator iStochastic
handle_iStochastic=iStochastic(Symbol(),Period(),
Inp_STO_Kperiod,Inp_STO_Dperiod,Inp_STO_slowing,
Inp_STO_ma_method,Inp_STO_price_field);
//--- if the handle is not created
if(handle_iStochastic==INVALID_HANDLE)
{
//--- tell about the failure and output the...