
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello mladen, mrtools, can you make it non repaint, please?
camisa
That is a good old 3 ma cross renamed and a bit changed.
This code is a cause of a repaint :
iMaSlowCurrent = iMA(NULL,0,SlowCnt,0,MODE_EMA, PRICE_CLOSE, shift);
iMaFastPrevious = iMA(NULL,0,FastCnt,0, MODE_EMA, PRICE_CLOSE, shift-1);
iMaFastCurrent = iMA(NULL,0,FastCnt,0, MODE_EMA, PRICE_CLOSE, shift);If it it changed then the result will not be what it shows now. You can use any normally written ma cross indicator and that is the result the indicator should show when it is corrected
It doesn't repaint this way?:
iMaSlowPrevious = iMA(NULL,0,SlowCnt,0,MODE_EMA, PRICE_CLOSE, shift);
iMaSlowCurrent = iMA(NULL,0,SlowCnt,0,MODE_EMA, PRICE_CLOSE, shift+1);
iMaFastPrevious = iMA(NULL,0,FastCnt,0, MODE_EMA, PRICE_CLOSE, shift);
iMaFastCurrent = iMA(NULL,0,FastCnt,0, MODE_EMA, PRICE_CLOSE, shift+1);
It doesn't repaint this way?:
iMaSlowPrevious = iMA(NULL,0,SlowCnt,0,MODE_EMA, PRICE_CLOSE, shift);
iMaSlowCurrent = iMA(NULL,0,SlowCnt,0,MODE_EMA, PRICE_CLOSE, shift+1);
iMaFastPrevious = iMA(NULL,0,FastCnt,0, MODE_EMA, PRICE_CLOSE, shift);
iMaFastCurrent = iMA(NULL,0,FastCnt,0, MODE_EMA, PRICE_CLOSE, shift+1);That will prevent using future values for comparison
Dear mladen and mrtools.
Can you make this indicator no repaint?
Dear mladen and mrtools. Can you make this indicator no repaint?
clon_tron
It can not be made non repainting. It is similar to adjustable period fractals and that type of indicators can not be made differently
clon_tron It can not be made non repainting. It is similar to adjustable period fractals and that type of indicators can not be made differently
ok thanks understand.
clon_tron It can not be made non repainting. It is similar to adjustable period fractals and that type of indicators can not be made differently
What about this one?
What about this one?
clon_tron
Did you check this one : https://www.forex-tsd.com/forum/debates-discussions/116-something-interesting-please-post-here/page148#comment_545444 ?
That is the correctly coded, non repainting version of trend trigger factor (TTF) since they both are actually TTF
clon_tron
Did you check this one : https://www.forex-tsd.com/forum/debates-discussions/116-something-interesting-please-post-here/page148#comment_545444 ?
That is the correctly coded, non repainting version of trend trigger factor (TTF) since they both are actually TTFThank you very much mladen !
smfishertransform3.mq4smfishertransform3.ex4
Could you please fix so that it does not repaint