New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.
Am I doing something wrong, or does this just not work
Below is my scan, still in development
In it I get numerous stocks with weekly RSI(30) >70. How come?
[type = stock] AND [country is US]
and [SMA(50,close)*SMA(50,volume)>2300000]
and [ Close > 10 ]
and [ group is NOT ETF]
and [ weekly RSI(30) < 70 ]
and [ weekly RSI(30) > 30 ]
and [ 0 week ago RSI(30) > 1 week ago Max(2,RSI(30)) ]
and [ 0 week ago MACD Hist(12,26,9) > 1 week ago Max(2, MACD Hist(12,26,9))]
0
Comments
The scan engine will not reject scans that include different time frames, but you have to be very careful when you write them to modify the terms correctly. Also, when you verify the results, you have to look at charts in each time frame, since you can't mix and match time frames on a chart.
So your scan, all in one time frame, would look like this:
[type = stock] AND [country is US]
and [ group is NOT ETF]
and [weekly SMA(50,weekly close)*weekly SMA(50, weekly volume)>2300000]
and [ weekly Close > 10 ]
and [ weekly RSI(30) < 70 ]
and [ weekly RSI(30) > 30 ]
and [ weekly RSI(30) > 1 week ago weekly Max(2,weekly RSI(30)) ]
and [ weekly MACD Hist(12,26,9) > 1 week ago weekly Max(2, weekly MACD Hist(12,26,9))]
Note that you may want to edit some parameters to account for the weekly time frame - for instance, the weekly moving average corresponding the to the daily "sma(50, close)" would be "weekly sma(10, weekly close)". These are not EXACTLY the same because the calculations are different (the daily uses 50 data points, the weekly uses 10) so the results are different, but usually similar enough.
http://scan.stockcharts.com/discussion/comment/3621#Comment_3621