Page 32 of 67
Re: Does this indicator repaint?
Posted: Fri Mar 08, 2019 5:39 am
by reachme
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.
Yes, it repaints.
Re: Does this indicator repaint?
Posted: Sat Mar 09, 2019 4:58 pm
by Cladi39
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?
Posted: Sun Mar 10, 2019 6:12 am
by pacois
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.
The indicators that all have perfect arrows recalculate and repaint.
Re: Does this indicator repaint?
Posted: Sun Mar 10, 2019 6:21 am
by Cladi39
pacois wrote: Sun Mar 10, 2019 6:12 am
The indicators that all have perfect arrows recalculate and repaint.
They are not perfects, same times the candle go in other direction,You use other test method?
Re: Does this indicator repaint?
Posted: Sun Mar 10, 2019 7:30 am
by pacois
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?
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?
Posted: Sun Mar 10, 2019 8:45 am
by Cladi39
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.
Is this the case? I see arrow appears when an ocilator pass 0 level. Soo when candle close the arrow stay there.
Re: Does this indicator repaint?
Posted: Sun Mar 10, 2019 9:16 am
by wojtek
Each time you see the code like this:
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;
you can be sure that it's the 8976th edition of solar wind (repainting fisher)...
Re: Does this indicator repaint?
Posted: Sun Mar 10, 2019 9:44 am
by Cladi39
wojtek wrote: Sun Mar 10, 2019 9:16 am
Each time you see the code like this:
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;
you can be sure that it's the 8976th edition of solar wind (repainting fisher)...
Thanks soo much very apreciated help-
Re: Does this indicator repaint?
Posted: Sun Mar 10, 2019 9:48 am
by Cladi39
A 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?
Re: Does this indicator repaint?
Posted: Sun Mar 10, 2019 10:59 am
by pacois
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.
when the line exceeds zero the arrow is not always formed on the current or closed bar but also more bars back.