True Range in the Tool tip

I would like to display True Range in the tooltip along with High-Close (High of the Candle - Close of the Candle).I would appreciate help on this.

My first thought:

Plot( Prec(ATR(1),4), "TrueRange", colorBlack, styleNoDraw | styleNoTitle | styleNoRescale );
Plot( Prec(H-C,4), "High-Close", colorBlack, styleNoDraw | styleNoTitle | styleNoRescale );
1 Like