|
Re: Higher Time Frame Indicator for TS
Another way is maintaining a 'synthetic' HTP high low close series based on the lower time frame bar using a multiplier. Maybe this will give you some ideas.
Input NumBars(5);
BarCount = BarCount + 1;
HTPbarH = maxlist(HTPbarH, H);
HTPbarL = minlist(HTPbarL, L);
if Barcount = NumBars
begin
BarCount =0;
HTPbarH=High;
HTPbarL=Low;
etc. etc.
|