ap·pren·ticeGuru![]() Veteran ![]() Posts: 123 Joined: 10/22/2010 Location: Columbia, MD ![]() | Thanks Jim, here is a sample for all, plus there could be other possibilities for personal customizing... #Indicator #param "ClosingPrice", 0 #param "PrevHIGH", 0 #param "PrevLOW", 0 #param "GlobexHIGH", 0 ' or pre-market high #param "GlobexLOW", 0 ' or pre-market low #param "Bearish", 0 #param "Neutral", 0 #param "Bullish", 0 if ClosingPrice > 0 then PlotPrice("Close",ClosingPrice) if PrevHIGH > 0 then PlotPrice("PrevHigh",PrevHIGH) if PrevLOW > 0 then PlotPrice("PrevLOW",PrevLOW) if GlobexHIGH > 0 then PlotPrice("GlobexHIGH",GlobexHIGH) ' or pre-market high if GlobexLOW > 0 then PlotPrice("GlobexLOW",GlobexLOW) ' or pre-market low if Bearish > 0 then PlotPrice("Bearish",Bearish) if Neutral > 0 then PlotPrice("Neutral",Neutral) if Bullish > 0 then PlotPrice("Bullish",Bullish) return 0 [Edited by ap·pren·ticeGuru on 12/29/2015 4:30 AM] |