# ---------------------------------------------------------- # Pete Mulmat 2016 # Watch me on the tastytrade.com network # https://www.tastytrade.com/tt/shows/futures-measures # ---------------------------------------------------------- input Label_Color_Choice = {default "orange", "green", "pink", "cyan", "magenta", "red", "blue", "gray", "violet"}; def multiplier = TickValue() * (1 / TickSize()); AddLabel(1, "Tick Size: " + TickSize(), GetColor(Label_Color_Choice)); AddLabel(1, "Tick Value: " + AsDollars(TickValue()), GetColor(Label_Color_Choice)); AddLabel(1, "Delta: " + multiplier, GetColor(Label_Color_Choice)); AddLabel(1, "Notional: $" + round(close*multiplier,0),GetColor(Label_Color_Choice));