Label for Current Candle Open To High Difference


Category:
0
0

Hi Pete,

I’m not getting any luck on creating a label for the current moving candle’s open price to high price net price difference

 

Thank you.

Marked as spam
Posted by (Questions: 3, Answers: 0)
Asked on January 26, 2022 9:09 am
57 views
0
Private answer

The language reference provided by Thinkorswim explains how to implement the AddLabel() statement:

https://tlc.thinkorswim.com/center/reference/thinkScript/Functions/Look---Feel/AddLabel

All you have to add to this is the math: high - open

Here is your label:

AddLabel(yes, high - open, Color.WHITE);

Marked as spam
Posted by (Questions: 37, Answers: 4087)
Answered on January 26, 2022 10:38 am