| DMOBRIEN 381 posts
 msg #161894
 - Ignore DMOBRIEN
 modified
 | 7/20/2025 9:47:22 AM 
 Combining these two somewhat leading indicators, and a lot of testing to find the proper values.
 
 
 set{R8, Williams %R(8)}
 set{WKLYR9, weekly Williams %R(9)}
 draw r8
 draw wklyR9 on plot R8
 volume > 1000000
 price > 1
 price < 10
 r8 > -50
 wklyr9 > -50
 set {tovo, pp * volume}
 set {myvol, avgvol(1)*1}
 set {myvwap1, sum(tovo,1) / myvol}
 SET{CSTWMA3, CWMA(Myvwap1,1)}
 SET{CSTWMA12, CWMA(Myvwap1,4)}
 CSTWMA3 crossed above CSTWMA12
 draw cstwma3
 draw cstwma12 on plot cstwma3
 
 set{z%, close/ ema(20)}
 add column z%
 draw ema(25)
 draw ema(75)
 draw ema(140)
 and shares outstanding < 200
 add column shares outstanding
 
 
 | 
| DMOBRIEN 381 posts
 msg #161895
 - Ignore DMOBRIEN
 | 7/20/2025 9:48:52 AM 
 No need for sorting.  This is a visual sort, but all candidates have strong potential.
 
 
 | 
| DMOBRIEN 381 posts
 msg #161896
 - Ignore DMOBRIEN
 | 7/20/2025 9:53:42 AM 
 MACD Stack.  Just look for the stack close to zero, but not a necessity.  Picked off UAVS on Friday.  Sort by volume.
 
 Set{LongMACD, macd(30,65,23)}
 Set{SHRTMACD, macd(15,33,11)}
 Set{TRIGMACD, macd(1.2,6.4,4)}
 set{zero, 0}
 draw zero on plot longmacd
 draw shrtmacd on plot longmacd
 draw trigmacd on plot longmacd
 set{LCD, LongMACD}
 set{SCD, SHRTMACD}
 set{TACD, TRIGMACD}
 and SCD > LCD
 
 set{ZROTRIG, -.01}
 draw ZROTRIG on plot SCD
 draw TACD on plot SCD
 and TACD crossed above ZROTRIG from below
 slope of shrtmacd(5) > 0
 
 set{z%, close/ ema(20)}
 add column z%
 price > .50
 price < 12
 average volume(2) > average volume(20)
 volume > 500000
 price > ema(5)
 chart-time is 9 months
 shares outstanding < 275
 add column shares outstanding
 
 
 | 
| snappyfrog 749 posts
 msg #161901
 - Ignore snappyfrog
 | 7/20/2025 11:01:06 AM 
 Making it clickable.
 
 
 
 
 
 |