Previous High/low Label


Category:
0
0

Hi Pete. I would like to be able to have a chart label displaying both the previous candles’ high and low prices. How would build that thinkscript?

Marked as spam
Posted by (Questions: 15, Answers: 23)
Asked on October 20, 2020 10:49 am
88 views
0
Private answer

AddLabel(yes, Concat("Prev High: ", high[1]), Color.WHITE);
AddLabel(yes, Concat("Prev Low: ", low[1]), Color.GRAY);

Marked as spam
Posted by (Questions: 37, Answers: 4086)
Answered on October 20, 2020 1:09 pm
0
Thanks Pete!
( at October 20, 2020 4:43 pm)