Add offset to existing indicator that places a 3min 135 HMA to 1 minute chart
input threeMinuteHullMALength = 135;
plot HMAthreeMinuteChart = HullMovingAvg
(close(period="3 Min"), threeMinuteHullMALength);
This is the formula I have created but I would like to offset the resulting indicator by 10 Minutes.
Thanks so much
input threeMinuteHullMALength = 135;
plot HMAthreeMinuteChart = HullMovingAvg
(close(period="3 Min"), threeMinuteHullMALength);
This is the formula I have created but I would like to offset the resulting indicator by 10 Minutes.
Thanks so much
Last edited by a moderator: