_SECTION_BEGIN("Hi-Lo Lines");
Plot (SelectedValue(TimeFrameGetPrice("H", inDaily, 0, expandLast)), "Hi", IIf(abs(BarIndex() - SelectedValue(BarIndex())) > 5, GetChartBkColor(), colorYellow ), styleThick | styleNoTitle, Null, Null, 0, 1, 2 ); // last param is line width as percent of bar);
Plot (SelectedValue(TimeFrameGetPrice("L", inDaily, 0, expandLast)), "Lo", IIf(abs(BarIndex() - SelectedValue(BarIndex())) > 5, GetChartBkColor(), colorYellow ), styleThick | styleNoTitle, Null, Null, 0, 1, 2 ); // last param is line width as percent of bar);
// change 0 above to 1 for previous Hi/Lo
_SECTION_END();