Anyone know what code needs to be added to allow this formula to work with tick charts?
Currently it plots lines on every candle in the tick chart.
Thanks
Currently it plots lines on every candle in the tick chart.
Thanks
if(isIntraday() && Interval == null) Interval = "D";
if((isIntraday()||isTick()||isRawTick()) && Interval == null) Interval = "D";
Comment