KevinSammy
Member
I am trying to display the lowest price on a candle as a bubble. I currently have it displayed above the candle as just the price, but the bubble would be ideal.
Here's the code for the price portion:
Can someone please take a look at the code for the bubble below and let me know how to do it? I've been trying for a while and am stuck.
Thank You!
Here's the code for the price portion:
Code:
plot value3 = if swing_lo and Lo < Hi and Lo > Lo[1] then pricelow else Double.NaN;
value3.SetPaintingStrategy(PaintingStrategy.VALUES_above);
value3.SetDefaultColor(Color.WHITE);
Can someone please take a look at the code for the bubble below and let me know how to do it? I've been trying for a while and am stuck.
Code:
AddChartBubble(swing_lo and Lo < Hi and Lo > Lo[1], low, "HIGHER Low", Color.WHITE, yes);
Thank You!