Read Arrows /Custom Indicator
-
Hello,
I am using a custom indicator like this
SetIndexStyle(0, DRAW_ARROW, 0, 1);
SetIndexArrow(0, 72);
SetIndexBuffer(0, downArrow);
//----
SetIndexStyle(1, DRAW_ARROW, 0, 1);
SetIndexArrow(1, 71);
SetIndexBuffer(1, upArrow);I tried to use the visible and appear function according to the fractal example. But with no luck.
How can I get the arrow if show on the chart in fxDreema?
Thx
Andreas -
With arrow indicators, always try with Candle ID = 1 or bigger than 1. These indicators almost never put their arrows on the current candle
-
This worked right away! Thanks for your great support.
Andreas