Hello Craig,
Regarding the “coding a new 50 day high” exploration, I had a go at coding the indicator as to visually be able to see the results on the chart. It appears to work as intended. Just wanted to know if there is anything you would have done differently?? Code below.
Thanks
Oliver
//MyChannel
_SECTION_BEGIN (“Upper Channel”);
Periodhigh = HHV(ParamField(“Price”,1),Param(“Periods”,50,2,1000,1));
_SECTION_END();
_SECTION_BEGIN (“Lower Channel”);
Periodlow = LLV(ParamField(“Price”,2),Param(“Periods”,50,2,1000,1));
_SECTION_END();
Plot(Periodhigh,”Period High”,colorRed,styleline);
Plot(Periodlow,”Period Low”,colorRed,styleline);