Inputs: markeroffset (0.0002), arw_color( Red ), Arw_Style( 7 ) ; Variables: Trigger( false ), Counter( 0 ) ; Trigger = false; Counter = 1; While Trigger = false begin If High[Counter] > High[Counter+1] and High < High[1] then begin plot1[Counter](High[Counter], "dnRevers"); value1 = arw_new(Date[Counter],Time[Counter],High[Counter],True); value2 = arw_setcolor(value1,arw_color); value3 = arw_setstyle(value1, Arw_Style); Trigger = true; end else noPlot(Counter); If High[Counter] < High[Counter+1] then Trigger = true; Counter = Counter + 1; If Counter > 50 then Trigger = true; end;