I'm attempting to draw icons on the bottom of candles rather than the top. The following code will draw a wedge. Is there a way to draw it o the bottom of a candle?
Thank you
Ruby:
plot pltATRBubble = showAtrBubble and thresholdMet;
pltATRBubble.SetPaintingStrategy(PaintingStrategy.BOOLEAN_WEDGE_UP);
pltATRBubble.AssignValueColor(COLOR.ORANGE);
Thank you