Page 115 of 183

Re: Trend Indicators for MT4

Posted: Sat Apr 30, 2022 1:43 am
by moey_dw
mrtools wrote: Wed Apr 27, 2022 5:13 am Button added.
thx mrtoolz ur button skills are perfect now!!! :hug: :hug: :hug:

Re: Trend Indicators for MT4

Posted: Sat Apr 30, 2022 1:53 am
by mrtools
moey_dw wrote: Sat Apr 30, 2022 1:43 am thx mrtoolz ur button skills are perfect now!!! :hug: :hug: :hug:
Thanks, it took a lot of help and now just need to translate it to mt5.

Re: Trend Indicators for MT4

Posted: Sat Apr 30, 2022 4:09 am
by mrtools
Added mtf and a button to averages trend filtered channeled.

Re: Trend Indicators for MT4

Posted: Sat Apr 30, 2022 4:57 pm
by sal
mrtools wrote: Fri Apr 29, 2022 4:22 am You originally said "for up arrows::: open price < bottom channel && high price > previous bar high price at close time frame" you never gave your rules for down arrows so I assumed you wanted the opposite for down arrows. This is the code with 1 = up arrows and -1 = down arrows. Now it sounds like you want a verified bull/bear candle after channel breakout.

Code: Select all

trend[i]  = (Open[i]<lower[i] && High[i]>High[i+1]) ? 1 : (Open[i]>upper[i] && Low[i]<Low[i+1]) ? -1 : 0;
mr.tools
finally i can expect any update!!

Re: Trend Indicators for MT4

Posted: Tue May 24, 2022 5:36 pm
by ionone
Early Trend Detector

This indicator tries to determine early beginnings of trends, when price makes higher highs but is still squeezed inside price action


Re: Trend Indicators for MT4

Posted: Tue May 24, 2022 5:44 pm
by josi
ionone wrote: Tue May 24, 2022 5:36 pm
Image
seems to work perfectly.
If you look at your own chart price moves from upper left to lower right:
there were times when people - without the use of any indicator - called this a downtrend.

Re: Trend Indicators for MT4

Posted: Wed May 25, 2022 2:13 am
by camisa
ionone wrote: Tue May 24, 2022 5:36 pm This indicator tries to determine early beginnings of trends, when price makes higher highs but is still squeezed inside price action
Image
interesting indicator, mrtools can you please add full audio alerts?

Re: Trend Indicators for MT4

Posted: Wed May 25, 2022 4:20 am
by mrtools
camisa wrote: Wed May 25, 2022 2:13 am interesting indicator, mrtools can you please add full audio alerts?
Being that's Ionone's indicator think it would be best for him to add the alerts.

Re: Trend Indicators for MT4

Posted: Wed May 25, 2022 4:42 pm
by ionone
camisa wrote: Wed May 25, 2022 2:13 am interesting indicator, mrtools can you please add full audio alerts?
here it is, plus one little mistake corrected (I was using "iHigh" for "lowest" value instead of 'iLow', not a huge deal but now it's corrected, sorry about that guys)
not tested but alerts should work
alerts are issued during latest bar (when the high/low is broken), not at a new bar. But the logic of the indicator allows that to happen, allowing alerts even earlier. If you want you can wait the close of the bar to trade the signal but I don't see any benefit to that

please look above for the latest file

Re: Trend Indicators for MT4

Posted: Wed May 25, 2022 8:10 pm
by camisa
ionone wrote: Wed May 25, 2022 4:42 pm here it is, plus one little mistake corrected (I was using "iHigh" for "lowest" value instead of 'iLow', not a huge deal but now it's corrected, sorry about that guys)
not tested but alerts should work
alerts are issued during latest bar (when the high/low is broken), not at a new bar. But the logic of the indicator allows that to happen, allowing alerts even earlier. If you want you can wait the close of the bar to trade the signal but I don't see any benefit to that
I think it's not working, please add alert message display