I have a question that probably has a simple answer but I can't seem to figure it out. I want to create a tick/q label for the nasdaq futures similar to the one below but it doesn't allow me to enter TICK/Q in place of TICK. Is there some simple thing I am missing or not thinking of? Thanks for you time and help.
# Tick Label
input SYMB = "$TICK";
def TICK = close(symbol = SYMB, period = AggregationPeriod.Day);
addLabel(1, "$TICK = " + TICK, if TICK < 0 then Color.RED else Color.GREEN);
# End Code
# Tick Label
input SYMB = "$TICK";
def TICK = close(symbol = SYMB, period = AggregationPeriod.Day);
addLabel(1, "$TICK = " + TICK, if TICK < 0 then Color.RED else Color.GREEN);
# End Code