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.
How would you scan this mean reversion strategy?
Hey there,
I'm not sure how to code this one. I want to try this mean reversion strategy by Thomas Carr from his book Market Neutral Trading. Each trade is meant to have a long/short pair. Here is the definition for longs:
Stocks > $5 and >100,000 per day trading volume
Yesterday's close < lower Bollinger Band
Yesterday's close > 10 percent below the 20sma
Each of the previous three days before yesterday's close show a %B <0.25
Today's close > lower Bollinger Band
Thank you!
0
Answers
Long:
[type = stock]
AND [country = US]
AND [Daily SMA(20,Daily Volume) > 100000]
AND [Daily SMA(60,Daily Close) > 5]
AND [Yesterday's Daily Close < Yesterday's Daily Lower BB(20,2.0,Daily Close)]
AND [Yesterday's Daily Close < Yesterday's Daily SMA(20,Daily Close) * 0.9]
AND [2 days ago Daily %B(20,2.0,Daily Close) < 0.25]
AND [3 days ago Daily %B(20,2.0,Daily Close) < 0.25]
AND [4 days ago Daily %B(20,2.0,Daily Close) < 0.25]
AND [Daily Close > Daily Lower BB(20,2.0,Daily Close)]
Short:
[type = stock]
AND [country = US]
AND [Daily SMA(20,Daily Volume) > 100000]
AND [Daily SMA(60,Daily Close) > 5]
AND [Yesterday's Daily Close > Yesterday's Daily Upper BB(20,2.0,Daily Close)]
AND [Yesterday's Daily Close > Yesterday's Daily SMA(20,Daily Close) * 1.1]
AND [2 days ago Daily %B(20,2.0,Daily Close) > 0.75]
AND [3 days ago Daily %B(20,2.0,Daily Close) > 0.75]
AND [4 days ago Daily %B(20,2.0,Daily Close) > 0.75]
AND [Daily Close < Daily Upper BB(20,2.0,Daily Close)]