| Mansor 78 posts
 msg #150864
 - Ignore Mansor
 | 2/22/2020 6:02:35 PM 
 2/22/2020 2:06:39 PM
 
 might try marilyns 4,8,21 price cross at the same time with the rsi on a intraday chart, wham!
 just look at charts !
 
 -----------------------------------------------------------------------------------------------------------------------
 
 is this what you're referring:
 
 
 /* Basic Filter for newbies and old pros */
 
 /* selection criteria */
 
 and open < ema(21)
 and open < ema(8)
 and open < ema(4)
 and close > ema(21)
 and close > ema(4)
 and close > ema(8)
 and close > open
 and close 3 days ago < ema(21)
 and close 5 days ago < close 3 days ago
 and close 5 days ago < ema(90)
 
 
 close between .25 and 20
 volume above 1000000
 
 
 set{E36b,days(ema(4) is above ema(8),100)}
 set{E36a,days(ema(4) is below ema(8),100)}
 set{E4xE8, E36a - E36b}
 
 set{E50200b,days(ma(50) is above ma(200),100)}
 set{E50200a,days(ma(50) is below ma(200),100)}
 set{M50xM200, E50200a - E50200b}
 
 set{E1326b,days(ema(8) is above ema(21),100)}
 set{E1326a,days(ema(8) is below ema(21),100)}
 set{E8xE21, E1326a - E1326b}
 
 set{CCb,days(close is above close 1 day ago,100)}
 set{CCa,days(close is below close 1 day ago,100)}
 set{CxC, CCa - CCb}
 
 set{E5b,days(close is above ema(4),100)}
 set{E5a,days(close is below ema(4),100)}
 set{CxE4, E5a - E5b}
 
 set{E8b,days(close is above ema(8),100)}
 set{E8a,days(close is below ema(8),100)}
 set{CxE8, E8a - E8b}
 
 set{E21b,days(close is above ema(21),100)}
 set{E21a,days(close is below ema(21),100)}
 set{CxE21, E21a - E21b}
 set{E50b,days(close is above ma(50),100)}
 set{E50a,days(close is below ma(50),100)}
 set{CxM50, E50a - E50b}
 
 set{E200b,days(close is above ma(200),100)}
 set{E200a,days(close is below ma(200),100)}
 set{CxM200, E200a - E200b}
 
 
 set{T10, count(10 day slope of the close above 0,1)}
 set{T60, count(60 day slope of the close above 0,1)}
 set{T200, count(200 day slope of the close above 0,1)}
 
 Set{a1, T200 * 1}
 Set{a2, T60 * 10}
 Set{a3, T10 * 100}
 
 Set{aa, a1 + a2}
 Set{TREND, aa + a3}
 
 set{v, volume 1 day ago}
 set{volinc, volume - v}
 set{volpc, volinc / v}
 set{volpct, volpc * 100}
 
 set{VolZ, days(volume < 1,100)}
 set{VolUp, days(volume is below volume 1 day ago,100)}
 set{VolDn, days(volume is above volume 1 day ago,100)}
 set{VolCnt, VolUp - VolDn}
 
 set{vck1, volume 1 day ago }
 set{vck, volume / vck1 }
 set{vdbl, days(vck < 2, 100)}
 
 
 and add column VolCnt
 and add column Vdbl
 and add column VolZ
 
 and add column Trend
 
 and add column CxC
 and add column CxE4
 
 and add column E4xE8
 and add column E8xE21
 
 
 and add column CxM50
 and add column CxM200
 and add column M50xM200
 
 add column rsi(2)
 add column weekly rsi(2)
 
 sort column 8 descending
 
 -------------------------------------------------------------------------------------------------------------
 
 
 |