Page 1263 of 2170

Re: MT4 Indicator requests and ideas

Posted: Tue Apr 13, 2021 10:49 am
by Perfect_Entrys
Perfect_Entrys wrote: Tue Apr 13, 2021 10:47 am Trend direction + force index - smoothed 4_2.ex4

Re: MT4 Indicator requests and ideas

Posted: Tue Apr 13, 2021 10:51 am
by Perfect_Entrys
Perfect_Entrys wrote: Tue Apr 13, 2021 10:47 am Trend direction + force index - smoothed 4_2.ex4

Re: MT4 Indicator requests and ideas

Posted: Tue Apr 13, 2021 9:43 pm
by Kyodah
mrtools wrote: Wed Mar 03, 2021 2:55 am Posted here Heiken Ashi
Hi ,this is part of the code which draws arrows once the price touches the tma channel indicating bearing or bulling candles, but the arrow is set on a current candle which is constantly changing ,
HOW can i set it so that the code in the IF STATEMENTS below only exceutes after candle close ?can you please help.
if(i > 0) {
if(high[i-1] > tmau[i-1] && close[i-1] > open[i-1] && close < open) {
ReboundD = high + AtrMultiplier*atr/2;
if(tmac - tmac[i-1] > TMAangle*_Point) Caution = ReboundD + 10*_Point;
}
if(low[i-1] < tmad[i-1] && close[i-1] < open[i-1] && close > open) {
ReboundU = low[i] - AtrMultiplier*atr/2;
if(tmac[i-1] - tmac[i] > TMAangle*_Point) Caution[i] = ReboundU[i] - 10*_Point;
}
}

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 14, 2021 12:42 am
by mrtools
Kyodah wrote: Tue Apr 13, 2021 9:43 pm Hi ,this is part of the code which draws arrows once the price touches the tma channel indicating bearing or bulling candles, but the arrow is set on a current candle which is constantly changing ,
HOW can i set it so that the code in the IF STATEMENTS below only exceutes after candle close ?can you please help.
if(i > 0) {
if(high[i-1] > tmau[i-1] && close[i-1] > open[i-1] && close < open) {
ReboundD = high + AtrMultiplier*atr/2;
if(tmac - tmac[i-1] > TMAangle*_Point) Caution = ReboundD + 10*_Point;
}
if(low[i-1] < tmad[i-1] && close[i-1] < open[i-1] && close > open) {
ReboundU = low[i] - AtrMultiplier*atr/2;
if(tmac[i-1] - tmac[i] > TMAangle*_Point) Caution[i] = ReboundU[i] - 10*_Point;
}
}


If that is mt4 looks like you are possibly trying to look into the future and if using a centered tma would make the repaintingf/recalculation worse.

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 14, 2021 3:12 am
by cvdm7756
Good Day Mr Tools,
Would you have a good ZigZag signals indicator with alerts and Push notifications in your collection you could share with me?

Regards

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 14, 2021 3:19 am
by mrtools
cvdm7756 wrote: Wed Apr 14, 2021 3:12 am Good Day Mr Tools,
Would you have a good ZigZag signals indicator with alerts and Push notifications in your collection you could share with me?

Regards
Nope, sure don't.

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 14, 2021 4:39 am
by Kyodah
mrtools wrote: Wed Apr 14, 2021 12:42 am If that is mt4 looks like you are possibly trying to look into the future and if using a centered tma would make the repaintingf/recalculation worse.
No this is mt5 sir , yes true it is repainting system the tma but the rebound arrows do not repaint , it would better if the arrow appeared after the candle close

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 14, 2021 7:52 pm
by Merylfx
Hello Mrtools, can you please add a ON/OFF button to this indicator.
Thanks

Re: MT4 Indicator requests and ideas

Posted: Thu Apr 15, 2021 12:22 am
by sal
mr.tools
can you please add one more sets parameters and bb lines in sub window.

Re: MT4 Indicator requests and ideas

Posted: Thu Apr 15, 2021 1:10 am
by vadvid
Hi,

Would you please add email and push notification alert to this no repaint indi?

thanks