| sr7 163 posts
 msg #161282
 - Ignore sr7
 modified
 | 7/31/2024 3:09:18 PM 
 
 This RSI Turbo scan actually uses two RSI indicators and one CMO indicator.
 
 ---- The rsi(2) is along for the ride (and tells us when to buy).
 
 ---- The rsi(5) is the helper and does the  heavy work.
 
 ---- The cmo(5,3) tells us how long it's been down and out (flat-line - down at the bottom).
 
 
 
 Fetcher[
 
 /* RSI(2) Turbo Scan!  -  July 31, 2024
 
 */
 
 
 market is not etf and market is not otcbb
 draw rsi(2) line at 30 and draw rsi(2) line at 70 and add column rsi(2)
 RSI(5) reached a new 6 day low 2 days ago and RSI(5) crossed above 30 from below
 do not draw RSI(5) and do not draw RSI(5) 6-day low and do not draw RSI(5) line at 30
 draw CMO(5,3) line at 0
 price between .50 and 5 and volume > 900000
 sort column 5 descending
 
 ]
 
 
 
 
 |