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.

 
Jim Dean

Sage
2000100010010010010025
Posts: 3433

Joined: 3/13/2006
Location: L'ville, GA

User Profile
 
Subject : RE: Help with scan
Posted : 3/22/2014 1:54 PM
Post #22784 - In reply to #22783

52 week high in the last 4 weeks:

... OLang solution
GotHi = false
for N = 0 to 19
if H[N] > HHV(260)[N+1] then GotHi = true
next N

BUT ... since "false"=0 and "true" = -1, we can express this as the sum of 20 tests (ie 4 weeks)
Sum((H > HHV(260)[1]),20) < 0

-----------------
OBV higher than 6 months prior:

OBV() > HHV(OBV(),130)[1]

-----------------
Your Keltner channel = EMA(20) +/- 2*ATR(10), so, Price between midline and lower:

EMA(20) - C >= 2*ATR(10)


-----------------
I set up these three rules in an OScan of All US Stocks (11k symbols), and there wasn't even ONE symbol that passes all the tests

So your rules might have to be loosened up a bit. For instance, if you want the stocks for which any TWO of the three rules are true, you can do this:

( EMA(20) - C >= 2*ATR(10) ) +
( OBV() > HHV(OBV(),130)[1] ) +
( Sum((H > HHV(260)[1]),20) < 0 ) <= -2

... which gives 162 hits




[Edited by Jim Dean on 4/8/2014 11:29 AM]

Deleting message 22784 : RE: Help with scan


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