Attachments forums

List of attachments posted on this forum.


All files on forums: 135714

Re: Trend Indicators for MT4

kvak, Fri Jun 17, 2022 3:57 am

sal wrote: Fri Jun 17, 2022 3:11 am :think:
naa.. i have the same file , but unfortunately there are so may places breakout happening and its very strong signals.
The same situation in histogram see snap both indies ..
i do love this indicator now..
:hug:
if you have time old post done some one, the snap see the same what i have received dots simliar type
please have a look the same indicator
Because trend is calculated from signal to signal.
If you want all signal break change in your posted indicator line 185 from this

Code: Select all

trend[i]  = (i<Bars-1) ? (Close[i]>upper[i]) ? 1 : (Close[i]<lower[i]) ? -1 : trend[i+1] : 0;
to this

Code: Select all

trend[i]  =  (Close[i]>upper[i]) ? 1 : (Close[i]<lower[i]) ? -1 : 0;
EDIt: make quick mode, where you have menu and you may switch between this two modes...
All files in topic