Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

scanning Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
guru7306
Posted : Tuesday, November 3, 2009 11:19:18 AM
Registered User
Joined: 10/9/2007
Posts: 18
thx for the post to the video on channeling stocks i will try to build that this week. i would like to create a scan for  two conditions: i want to look for stocks with rsi > 50 and price > 50 day ema and vice versa for the short. can you helpw/ this thx again s/d
Bruce_L
Posted : Tuesday, November 3, 2009 11:25:37 AM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138
QUOTE (guru7306)
i would like to create a scan for  two conditions: i want to look for stocks with rsi > 50 and price > 50 day ema...

If you Drag and Drop RSI and the Moving Average into the Code tab of the RealCode Editor, it should create something similar to the first two lines of the following RealCode Rule:

'# RSI = indicator.RelativeStrengthIndex(RSI)
'# MA = indicator.MovingAverage
If RSI.Value > 50 AndAlso _
    Price.Last > MA.Value Then Pass

QUOTE (guru7306)
...and vice versa for the short.

If you Drag and Drop RSI and the Moving Average into the Code tab of the RealCode Editor, it should create something similar to the first two lines of the following RealCode Rule:

'# RSI = indicator.RelativeStrengthIndex(RSI)
'# MA = indicator.MovingAverage
If RSI.Value < 50 AndAlso _
    Price.Last < MA.Value Then Pass

-Bruce
Personal Criteria Formulas
TC2000 Support Articles
Users browsing this topic
Guest-1

Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.