Page 40 of 66

Re: Does this indicator repaint?

Posted: Tue Jul 30, 2019 5:12 pm
by Matija
mrtools wrote: Tue Jul 30, 2019 7:40 am

The sdl-mam-indicator is a repainting Hull moving average, we have some non repainting versions in the forum. The other can maybe test in a back tester but don't think it repaint.
Thank you Mrtools

Re: Does this indicator repaint?

Posted: Thu Aug 08, 2019 7:58 am
by ahmadrz62
Hi there.

It would be so nice if you can tell me that if this indicator repaints or not

Mod edit: No links to other indicators allowed. Please upload the file in future

Re: Does this indicator repaint?

Posted: Thu Aug 08, 2019 8:31 am
by pacois
ahmadrz62 wrote: Thu Aug 08, 2019 7:58 am Hi there.

It would be so nice if you can tell me that if this indicator repaints or not
Mod edit: No links to other indicators allowed. Please upload the file in future


Hi, here are the various versions and they certainly don't repaint because they are from Mladen.

viewtopic.php?f=579496&t=8438707&hilit= ... orce+index

Re: Does this indicator repaint?

Posted: Thu Aug 08, 2019 8:39 am
by ahmadrz62
[quote=pacois post_id=1295393588 time=1565217098 user_id=4868669]


Thank u so much :thumbup:

Re: Does this indicator repaint?

Posted: Wed Aug 14, 2019 5:40 pm
by friend4you
mrtools wrote: Tue Jul 30, 2019 7:36 am Probably would repaint, this version shouldn't.
As it does not fit in other threads, I try here:
Are the not used options (like the other not selected ma on averages indis) mostly neglected or do they still use cpu-time?
Should I prefer the indis with fewer options in general or does that make no difference on fast changing renko even if I deactivate most options in these indis? Are the averages indis for example always slower than the ones that are written only for one ma like non-lag ma?

Re: Does this indicator repaint?

Posted: Fri Aug 23, 2019 11:31 pm
by dah
Hello, thanks for all the help from the experts and coders.

Does the attached indicator repaint? If so is there an alternative or similar indicator.

Thank you in advance!

Re: Does this indicator repaint?

Posted: Sat Aug 24, 2019 10:06 am
by Cladi39
This indicator repaint when candle close? Thanks soo much for help me.

Re: Does this indicator repaint?

Posted: Sat Aug 24, 2019 10:11 am
by wojtek
Cladi39 wrote: Sat Aug 24, 2019 10:06 am This indicator repaint when candle close? Thanks soo much for help me.
At least (SSP + 1) bars back, which results directly from the expression

Code: Select all

G_ibuf_96[Li_0 - SSP - 1] = Ld_32;

Re: Does this indicator repaint?

Posted: Sat Aug 24, 2019 10:18 am
by Cladi39
wojtek wrote: Sat Aug 24, 2019 10:11 am
At least (SSP + 1) bars back, which results directly from the expression

Code: Select all

G_ibuf_96[Li_0 - SSP - 1] = Ld_32;
Thanks for answer . What means? repaint when candle close?

Re: Does this indicator repaint?

Posted: Sat Aug 24, 2019 10:20 am
by wojtek
Cladi39 wrote: Sat Aug 24, 2019 10:18 am Thanks for answer . What means? repaint when candle close?
Last (SSP + 1) closed bars can repaint.
It results directly from the expression quoted above.