To whom it may concern
I would like to back test using following parameters
I would like to Buy when the following three paramters are meet
- 30 day RSI is below 30
- If a share trades 30 % above three month average volume
- If a share is down by more than 3%
Please If any one could help
Regards
Oliver
If a share is down by more than 3%, compared to…?
Hi Robert,
just If the share is down 3% on any given day
There you go (for the Daily TF):
c1 = volume > Average[60,0](volume) //3 months is about 60 trading days
c2 = Rsi[30](close) < 30
c3 = close < (close[1] * 0.97)
IF c1 AND c2 AND c3 AND not OnMarket THEN
BUY 1 SHARE AT MARKET
ENDIF
Thank you so much Robert!!
Hi Robert,
My back test is coming up with no results but when i back test on my Reuters manually I get multiple entry points! I just would like to confirm following
That we would buy a stock when the following 3 criteria happen
1- Share below 30 on 30 Day RSI
2- Volume traded is 1.3 X 3 month Average Volume on any given day
3 – Share is down by more than 3 %
Thank you once again for all your help!
Replace line 1 with
c1 = volume >= (Average[60,0](volume) * 1.3) //3 months is about 60 trading days
but this will make it more difficult to get results!
On what instruments are you testing it?
It works as from attached pic. Very few trades, though.
I made a screener out of your strategy, test it on your preferred watchlist:
c1 = volume > Average[60,0](volume)
c2 = Rsi[30](close) < 30
c3 = close < (close[1] * 0.97)
x = c1 AND c2 AND c3
SCREENER[x]
Hi Roberto,
Thank you so much!!
Ill try it today have a great day!