Custom Indicator Panel Keeps Blinking Every Tick
-
I have been working on a custom indicator (Entry Points Pro ex4 file) with a statistics panel and the default value of the "Show Statistics" panel is set to true. When I load the Expert Advisor, the indicator's panel keeps blinking every tick. Is there a way to turn off the panel so it won't have to blink every tick?
Here is the link of my project:
https://fxdreema.com/shared/TxhAPnWpd

-
@bazear85 This is weird. I see you chose 'false' in the input parameter. I guess the indicator is taking the order from anothr place in its code. I have no idea how to stop that other than a programmer reviewing the indocator's code.
-
I guess this is the case with working on a custom indicator on EX4 file and not the source code.
-
@bazear85 Hello @bazear85! As you have commented, the problem is the indicator since we cannot verify the guts of this and possibly some data is crossed from one buffer to another and it produces that error, it is also possible that when performing it tick by tick it does not refresh or repaint and when repainting It causes you flashes, another added problem is that if what is done is tick by tick and you need it, candle by candle the values produce very long decimal numbers and when passing them from "double to integer" it produces those flashes, it has happened to me Many times and the only way was in the indicator to change the type of variable if possible, it is a very common problem in MT4 and MT5 thinks that it is developed for machines with a very basic structure so that it is universal and is not limited to the type from the user's PC. See to obtain the Mql4 of the indicator so that we can verify it.
