Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 8/21/2007 Posts: 181
|
I'm looking to create a condition that indicates the close is in the top 25% of all closes in the past year.
Any suggestions?
|
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
(C - MINC252 + .0001) / (MAXC252 - MINC252) * 100 > 75
|
|
Registered User Joined: 8/21/2007 Posts: 181
|
In StockFinder / Realcode?
|
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
Oh, sorry....
If (price.close - price.minclose(252) + .0001) / (price.maxclose(252) - price.minlow(252)) * 100 > 75 then pass
|
|
Guest-1 |