Help with Indicator changing on reload

 

Hello,

I am using the MA Crossover Alert (attached)

Every time I load MT4, the arrow size changes back to 1. This doesn't happen with other indicators... Can someone please have a look and tell me how to stop it from resetting the arrow size...

Thanks,

Jin

 

Maybe it works to change the two

SetIndexStyle( ?, DRAW_ARROW, EMPTY, 1 );[/PHP]

to be

[PHP]SetIndexStyle( ?, DRAW_ARROW, EMPTY );

Specifically, according to the doc, the "1" as fourth argument makes the "width" be 1.

 

Great, that fixed it! Thanks.

Reason: