DMOBRIEN 364 posts msg #161857 - Ignore DMOBRIEN |
6/25/2025 11:18:19 PM
I'm not the most elegant coder, but in looking over and combining some of my work as well as others into a hybrid filter, this seems to have great potential. Just let the triggers do the work :)
/* HIGHER HIGH Triggers */
set{HH5, high 5 day high}
HH5 equals high
hh5 > hh5 one day ago
set{H5AVG, cwma(HH5, 20)}
draw H5AVG on plot HH5
set{z%, close/ ema(20)}
add column z%
draw lri(7)
draw lri(44)
draw lri(22)
high above high 1 day ago
set {tovo, pp * volume}
set {myvol, avgvol(2)*2}
set {myvwap1, sum(tovo,2) / myvol}
SET{CSTWMA, CWMA(Myvwap1,2)}
set{ema20, ema(20)}
set{BUYTrigger, CSTWMA crossed above ema20}
add column BUYtrigger
draw BUYTrigger
set{Trigger2, HH5 crossed above H5Avg}
add column Trigger2
draw Trigger2
volume above 1000000
volume > average volume(20) * 1.2
close above 5
close < 50
shares outstanding < 100
add column shares outstanding
chart-time is 6 months
sort column 7 descending
draw macd
|