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.
Best solution to capturing quarterly data?
I want to try and scan for stocks hitting a RSI of 30 on the quarterly charts through scanning. Any thoughts on what might be the best approach? I'm thinking of maybe scanning for long drawn drops on the monthly and then checking if the quarterly has hit RSI 30 from there but wondering if maybe there's a more accurate approach to this?
See below for an example, quarterly RSI is at 30
0
Comments
Fast Stochastics with "1" as the second parameter tells you where the current close is in relation to the range of the look back period. If RSI is low, the Fast Stoch should be low as well.
You could start with assuming they are identical
and [monthly Fast Stoch %K(27,1) < 30]
and then adjust it to get what you want on the quarterly chart.
Or you could do a "min" version for stocks that have been there but recovered:
and [min(10, monthly Fast Stoch %K(27,1)) < 30]
So also play around with the min 10.
but it didn't seem to pull out any quarterly RSIs below 30 for some reason
and comparing it to the RSI panel on a monthly chart
It appears to get in the ballpark in the 7-12 range.
I don't have access to the quarterly charts to delve into it at all, but perhaps scan for monthly RSI(12) < 30 and see if that gets you close. RSI is basically an Up/Down counter of momentum, so maybe explore the Count Up and Count Down filters as well. Monthly count down 12 > 9 or something like that. Those moves to extremes on the quarterly were reflections of extreme monthly activity.
I might also suggest flipping the MACD to PPO. PPO is much better at showing activity on short and long term charts, in my opinion.
CS has Fast K around 6, so you might try even lower than 10.
Apparently getting a low RSI requires a longish steady decline with closes near the lows. A lot of stocks seem to have a shorter, sharper or more variable decline than needed to get RSI below 30.
and [close > 1]
and [140 months ago monthly Close > 0.01]
and [monthly min(4,monthly low) = monthly min(72,monthly low)]