Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 11/9/2009 Posts: 4
|
Hello,
How do I get a bar or candle that closes above 50% of the low ?
|
|
Registered User Joined: 1/28/2005 Posts: 6,049
|
Try this:
STOC1.1>50
Thanks
|
|
Registered User Joined: 1/28/2005 Posts: 6,049
|
Whoops, disregard.
I just realized this was a StockFinder question and not Telechart.
Thanks
|
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
If you mean the close is in the top half of the day's range, then you could create a RealCode condition using the following...
if (price.Close - price.low) / (price.High - price.low) > .5 then pass
|
|
Guest-1 |