scottsamesame
New member
I am looking to put an arrow showing me the lowest close in the last 200 days on a daily chart.
I have been trying to tweak some code I found (below) but it's not working. Any help is appreciated. TY
=====
def hc200 = if isNaN(close[-1]) then Lowest(Close, 200) else 0;
plot hc = close == LowestAll(hc200);
hc.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
I have been trying to tweak some code I found (below) but it's not working. Any help is appreciated. TY
=====
def hc200 = if isNaN(close[-1]) then Lowest(Close, 200) else 0;
plot hc = close == LowestAll(hc200);
hc.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);