Hi everyone.
I haven't had any succes with Multi_Stoch_RSI on M15 TF so I started to play with stochastic indicator to see how it could be used as a trigger and results were unexpected (maybe only for me as beginner

).
Having a very limited coding skills I modified an Ilan EA kernel . I used a Stochastic (15,6,7) which is not so choppy as 7,2,2 on lower TF. The logic for buy signal is :
Sto_main(shif 1) < Sto_signal(shift 1) - diff && Sto_main(shift 0) >= Sto_signal (shift 0), and for sell:
Sto_main(shif 1) > Sto_signal(shift 1) + diff && Sto_main(shift 0) <= Sto_signal (shift 0).
diff is the minimum accepted difference between main and signal before cross trying to catch sudden moves. diff = 5 gave best results.
On M5 TF, the results after 18 days (on a demo account) are promising (if it isn't an exception).
I had to close some trades manually because EA did not set TP. Max. trades was set to 4 and there were 6 trades exceeding first step.
Total number of pips 747 . Max. drawdown pips -506.
Total number of trades 93
Number of winning trades 81
Andrew maybe you could use something like that as trigger on a lower TF.
PS. I hope you understand my english.
PS1: I don't want to interfere with current topic so please don't comment this EA. It was created for testing purposes only.