Hi
I'm developing an automated trading system and I'd like eSignal to plot a green arrow below the candle where the trade is triggered (and a red one for a short). I've been playing around with the drawshape command but it always plots the arrow in the study window and not in the main chart window.
This is how far I've gotten:
drawShapeRelative(1, low() -5, Shape.UPARROW, "", Color.RGB(0,255,0), Shape.BOTTOM);
Thanks for your help.
I'm developing an automated trading system and I'd like eSignal to plot a green arrow below the candle where the trade is triggered (and a red one for a short). I've been playing around with the drawshape command but it always plots the arrow in the study window and not in the main chart window.
This is how far I've gotten:
drawShapeRelative(1, low() -5, Shape.UPARROW, "", Color.RGB(0,255,0), Shape.BOTTOM);
Thanks for your help.
Comment