StockFetcher Forums · General Discussion · an observation<< >>Post Follow-up
push5280
197 posts
msg #158691
Ignore push5280
modified
2/28/2022 6:34:59 PM

recently many of the daily top performing stocks over the last few weeks have been coming off of recent 6 month lows. Many of them have also had some sort of news on the big move days
Fetcher[
set{mdt, close / ma(126)}
/*mdt > 1.18*/
volume 1 day ago > 100,000
volume 2 days ago > 100,000
volume 3 days ago > 100,000
set{6molo, count(close is at close 6 month low,1)}
draw 6molo
draw mdt line at 1.18
draw mdt line at 1
draw close 6 month low
set{6molo_20pct, close 6 month low * 1.2}
draw 6molo_20pct on plot price
draw ma(126)
close > 1
sort by column 3 descending
]



snappyfrog
651 posts
msg #158693
Ignore snappyfrog
3/1/2022 7:38:49 AM

Nice filter. I added the last line to try to catch when
the price begins moving up past your 6 month low 20 pct line.
This could be a good time to add to a watchlist.

Fetcher[

set{mdt, close / ma(126)}
/*mdt > 1.18*/
volume 1 day ago > 100,000
volume 2 days ago > 100,000
volume 3 days ago > 100,000
set{6molo, count(close is at close 6 month low,1)}
draw 6molo
draw mdt line at 1.18
draw mdt line at 1
draw close 6 month low
set{6molo_20pct, close 6 month low * 1.2}
draw 6molo_20pct on plot price
draw ma(126)
close > 1
sort by column 3 descending
/*added by snappyfrog*/
and close crossed above 6molo_20pct
]



snappyfrog
651 posts
msg #158694
Ignore snappyfrog
3/1/2022 8:13:33 AM

Or maybe the close cross 20% line 1 day ago and then
close above close 1 day ago to try to limit some that failed.

Fetcher[
market is not otcbb
market is not etf
volume > 50000
set{6molo, count(close is at close 6 month low,1)}
draw 6molo
draw close 6 month low
set{6molo_20pct, close 6 month low * 1.2}
draw 6molo_20pct on plot price
close > 1
sort by column 3 descending
/*added by snappyfrog*/
and close 1 day ago crossed above 6molo_20pct
and close > close 1 day ago
]



nibor100
1,010 posts
msg #158702
Ignore nibor100
3/2/2022 12:38:30 PM

@push5280,

I modified your filter to filter for only those stocks that your 4 conditions are True for today, as 4,000+ stocks are too many to sort thru for me.

I also added a count for the number of days in the past year that all 4 conditions were true per stock on a given day.

Ed S.

Fetcher[
chart-time is 6 months
set{mdt, close / ma(126)}
/*mdt > 1.18*/
volume 1 day ago > 100,000 set{Vol1, count(volume 1 day ago > 100,000,1)}
volume 2 days ago > 100,000 set{Vol2, count(volume 2 days ago > 100,000,1)}
volume 3 days ago > 100,000 set{Vol3, count(volume 3 days ago > 100,000,1)}
set{6molo, count(close is at close 6 month low,1)}

/*these next lines add up the 4 true/false count conditions from above*/
set{sum1, vol1 + vol2}
set{sum2, vol3 + 6molo}
set{sum3, sum1 + sum2}

/*next statement filters for all conditions being true today*/
add column sum3 equals 4

/*this statement filters for all conditions being true on any day in past year(for only the stocks it's true for today) and totals them up*/

set{sumtotal, count(sum3 equals 4, 252)}
add column sumtotal

draw sumtotal
draw 6molo
draw mdt line at 1.18
draw mdt line at 1
draw close 6 month low
set{6molo_20pct, close 6 month low * 1.2}
draw 6molo_20pct on plot price
draw ma(126)
close > 1
sort by column 3 descending
]



StockFetcher Forums · General Discussion · an observation<< >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.