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.
About uptrend from Gord Greer's Scan Building Blocks
The following are the extracts from Gord Greer's Scan Building Blocks.
The scan below finds securities where the RSI(14) values for the last 75 days are all above 40.
// Uptrend: RSI Above 40
and [min(75,RSI(14)) >= 40.0]
How would it run for the purpose of scanning uptrend stock??
How would it be the uptrend when RSI is above 40 over 75 days?
0
Comments
So in a bullish or uptrending security, the RSI will usually not go below 40.
In a bearish or downtrending security, the RSI will usually not go above 60.
So if the minimum level for the RSI in the past 75 days has been above 40, that would be a bullish uptrending range.
That scan line should provide a decent list of uptrending securities.
https://stockcharts.com/articles/tradingplaces/2023/05/where-are-we-can-we-say-this-i-192.html
https://school.stockcharts.com/doku.php?id=technical_indicators:relative_strength_index_rsi
Basically, RSI compares average gains to average losses over some number of bars. In an up trend, you expect the gains from bar to bar to be larger than the losses from bar to bar, so the RSI readings will be larger (mostly above 50). In a down trend, the reverse, so readings will be mostly below 50.