|
Hi,
u should use icustom for MTF stochastic.
double SignalcurrM15Sell = iCustom(NULL, 0, "MTF_Stochastic", 15, KPeriod, DPeriod, Slowing, 0, 0, 1, Current + 0);
double SignalprevM15Sell = iCustom(NULL, 0, "MTF_Stochastic", 15, KPeriod, DPeriod, Slowing, 0, 0, 1, Current + 1);
double MaincurrM15Sell = iCustom(NULL, 0, "MTF_Stochastic", 15, KPeriod, DPeriod, Slowing, 0, 0, 0, Current + 0);
double MainprevM15Sell = iCustom(NULL, 0, "MTF_Stochastic", 15, KPeriod, DPeriod, Slowing, 0, 0, 0, Current + 1);
iv been trying making mtf ea maybe i should try your algorithm. Lets see.
|