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
Hi all.
Is it possible to make the lw_fractals indicator no repaint?
Similar to what has been done to the ConsecutiveHLIndicator that Apprentice modified.
Thanks!
I'll attach both in my post.
Hi all.
Is it possible to make the lw_fractals indicator no repaint?
Similar to what has been done to the ConsecutiveHLIndicator that Apprentice modified.
Thanks!
I'll attach both in my post.Fractals can not be made non-repainting
Dear Mladen
Is it possible to make attached indicator non-repaint
Thanks for any help
secretcode
Dear Mladen
Is it possible to make attached indicator non-repaint
Thanks for any help
secretcodesecretcode
At the first glance the code looks OK which means that it will have to be thoroughly tested and checked. Will check it
Dear Mladen
Is it possible to make attached indicator non-repaint
Thanks for any help
secretcodeI have been checking that indicator and it has a lot of things that have no sense at all. For example this part :
bar_time = iTime(Symbol(), 0, offset);
bar_shft = iBarShift(Symbol(), 0, bar_time, FALSE);
bar_cont = bar_shft - Period(); if (bar_cont < 0) bar_cont = 0;bar_cont = bar_shft - Period(); part is a nonsense : subtracting current chart minutes from bar shift is rather od. Also, that way it artificially start using future values too, and we come back to the eternal thing : if it is changed, it will be nothing like the original indicator (using future values and using past values changes the calculated values 100%
I have been checking that indicator and it has a lot of things that have no sense at all. For example this part :
bar_time = iTime(Symbol(), 0, offset);
bar_shft = iBarShift(Symbol(), 0, bar_time, FALSE);
bar_cont = bar_shft - Period(); if (bar_cont < 0) bar_cont = 0;Thank you very much Mladen for your time and explanation
Best Regards
secretcode
Sir Mladen;
Kindly help me in making this indicator non-repainting one.
t.mq4
Sir Mladen;
Kindly help me in making this indicator non-repainting one.
t.mq4yayaria
Even though it is a decompiled indicator, as far as I see it is using centered TMA and it can not be made non recalculating. But I am almost sure that you will find the original indicator here : https://www.mql5.com/en/forum/181241
I see.
Do you know any other indicator that uses the same logic of code but does not recalculate?
I see. Do you know any other indicator that uses the same logic of code but does not recalculate?
yayaria
I did not check the logic of that code (as I told you, that is a decompiled code, I simply do not use or work with decompiled code). If you find the original source code that can be posted on a public forum, then post it and then somebody can check it