Ryan Olson![]() Veteran ![]() ![]() ![]() Posts: 170 Joined: 12/29/2006 Location: Austin, Tx ![]() | Beech Pilot - I think I get what you are looking for - some of this was a bit confusing as PlotPrice is only a visual plot however, since it was using the close price of the “Color Change” bar, we simply need to store that in a variable to be used later. Hope this helps. #system #Param "Extend", 3 #Param "Periods", 9 dim level as single dim s as string s = cstr(c[1]) if CAW_ZZ(2.5,14) = -1 and CAW_ZZ(2.5,14)[1] = 1 then level = C PlotPriceTrendLine( "Level", BAR, Close, BAR+Extend, close, blue, 3) End if If CAW_ZZ(2.5,14) = -1 and EMA(Periods) > level and EMA(Periods)[1] < level then PlotText("WTChange", C-(2*ATR(14)), s) Signal = LongSignal end if if CAW_ZZ(2.5,14) = 1 and CAW_ZZ(2.5,14)[1] = -1 then level = C PlotPriceTrendLine( "Level", BAR, Close, BAR+Extend, close, blue, 3) End if If CAW_ZZ(2.5,14) = 1 and EMA(Periods) < level and EMA(Periods)[1] > level then PlotText("WTChange", C-(2*ATR(14)), s) Signal = ShortSignal end if Plotprice("EMA", EMA(Periods), blue, 3) |