Make It No Repaint Please! - page 23

 
camisa:
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 :

iMaSlowPrevious = iMA(NULL,0,SlowCnt,0,MODE_EMA, PRICE_CLOSE, shift-1);

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);

 
camisa:
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?

Files:
 
clon_tron:
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

 
mladen:
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.

 
mladen:
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?

 
clon_tron:
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

 
mladen:
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

Thank you very much mladen !

 

smfishertransform3.mq4smfishertransform3.ex4

Could you please fix so that it does not repaint

Reason: