_SECTION_BEGIN("CurrentMiddle"); // Programmer: Alex Chambers, May 2007 // For use with the trading strategies at Kreslik.com // For Amibroker - just drag and drop // I, Alex Chambers, am not responsible for any results you may have from the use of this indicator // You must evaluate yourself the potential for gains AND losses // Please include this and/or any other comment description of any changes you make. startTim = Param("TimeOfOpen",130000,0,240000,500); ttt = IIf(TimeNum() == startTim,1,0); CH = HighestSince(ttt==1,H,1); CL = LowestSince(ttt==1,L,1); Plot((CH+CL)/2,"CurrMid",colorYellow,styleDashed|styleThick); _SECTION_END();