Yes, it repaints.mahnooj wrote: Tue Mar 05, 2019 11:18 pm Hi mntiwana, mrtools
it says this indicator is edited by someone... found it here in forexstation, can you please confirm is the indi repaints or not or is the code tampered with.
thanks.
Re: Does this indicator repaint?
312Hello guys I was testing visualy this indicator and think the arrows not repaint or recalculate when candle close. Anybody can confirm that think?
Thanks soo much for your help.
Thanks soo much for your help.
Re: Does this indicator repaint?
313The indicators that all have perfect arrows recalculate and repaint.Cladi39 wrote: Sat Mar 09, 2019 4:58 pm Hello guys I was testing visualy this indicator and think the arrows not repaint or recalculate when candle close. Anybody can confirm that think?
Thanks soo much for your help.
Re: Does this indicator repaint?
314They are not perfects, same times the candle go in other direction,You use other test method?pacois wrote: Sun Mar 10, 2019 6:12 am
The indicators that all have perfect arrows recalculate and repaint.
Re: Does this indicator repaint?
315I use the mt4 strategy tester, sometimes a lot of disordered arrows are formed, then when you update the indicator, they return perfectly in their place.Cladi39 wrote: Sun Mar 10, 2019 6:21 am
They are not perfects, same times the candle go in other direction,You use other test method?
Re: Does this indicator repaint?
316Is this the case? I see arrow appears when an ocilator pass 0 level. Soo when candle close the arrow stay there.pacois wrote: Sun Mar 10, 2019 7:30 am
I use the mt4 strategy tester, sometimes a lot of disordered arrows are formed, then when you update the indicator, they return perfectly in their place.
Re: Does this indicator repaint?
317Each time you see the code like this:
you can be sure that it's the 8976th edition of solar wind (repainting fisher)...
Code: Select all
if(MaxH-MinL == 0) Value = 0.33*2*(0-0.5) + 0.67*Value1;
else Value = 0.33*2*((price-MaxH)/(MinL-MaxH)-0.5) + 0.67*Value1;
Value=MathMin(MathMax(Value,-0.999),0.999);
if(1-Value == 0) ExtBuffer0[i]=0.5+0.5*Fish1;
else ExtBuffer0[i]=0.5*MathLog((1+Value)/(1-Value))+0.5*Fish1;
Re: Does this indicator repaint?
318Thanks soo much very apreciated help-wojtek wrote: Sun Mar 10, 2019 9:16 am Each time you see the code like this:
you can be sure that it's the 8976th edition of solar wind (repainting fisher)...Code: Select all
if(MaxH-MinL == 0) Value = 0.33*2*(0-0.5) + 0.67*Value1; else Value = 0.33*2*((price-MaxH)/(MinL-MaxH)-0.5) + 0.67*Value1; Value=MathMin(MathMax(Value,-0.999),0.999); if(1-Value == 0) ExtBuffer0[i]=0.5+0.5*Fish1; else ExtBuffer0[i]=0.5*MathLog((1+Value)/(1-Value))+0.5*Fish1;
Re: Does this indicator repaint?
319A question. Exist a MA cross indicator that dont repaint the signal when candle close? Thanks soo much for your help.
EMA can change after candle close?
EMA can change after candle close?
Re: Does this indicator repaint?
320when the line exceeds zero the arrow is not always formed on the current or closed bar but also more bars back.Cladi39 wrote: Sun Mar 10, 2019 8:45 am
Is this the case? I see arrow appears when an ocilator pass 0 level. Soo when candle close the arrow stay there.