OmniTrader Professional Forum OmniTrader Professional Forum
forums calendars search
today this week
 
register logon control panel Forum Rules
You are currently browsing as a guest.
You should logon to access more features
A Self-Moderated Community - ALL MEMBERS, PLEASE READ!
Vote for Members who contribute the most to your trading, and help us moderate content within the Forums.


Only Forum Moderators, Administrators, and the owner of this message may delete it.

 
ap·pren·ticeGuru

Veteran
100
Posts: 123

Joined: 10/22/2010
Location: Columbia, MD

User Profile
 
Subject : RE: How do we Plot a line at a price level?
Posted : 12/29/2015 4:27 AM
Post #24954 - In reply to #14983

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]

Deleting message 24954 : RE: How do we Plot a line at a price level?


Nirvana Systems
For any problems or issues please contact our Webmaster at webmaster@nirvsys.com.