StockFetcher Forums · General Discussion · horizontal and very close weekly moving averages<< >>Post Follow-up
indexa
37 posts
msg #162119
Ignore indexa
3/31/2026 9:01:34 PM

Hi everyone,

I want to make a list of candidates whose behavior is similar to that of PR , SSL or TTE during the last months of 2025.

That is, the 13- and 26-week moving averages were very close together and almost horizontal.

Does anyone have any ideas on how to create a filter that would give these results?

Thank you very much.

xarlor
644 posts
msg #162121
Ignore xarlor
4/2/2026 2:17:23 PM

Something like this. You'll need something else for confirmation if you're looking for breakouts. Just your two criteria give a lot of false positives.

Fetcher[
not etf
close > 5
set{ma_diff, abs( MA(13) - MA(26) )}
set{ma_pct_diff, ma_diff / close}
set{trigger1,count(ma_pct_diff between .95 and 1.05,1)}

set{trigger2,count(5 day slope of ma(13) between -0.02 and 0.02,1)}
set{trigger3,count(5 day slope of ma(26) between -0.02 and 0.02,1)}

set{trigger4,trigger1 * trigger2}
set{trigger,trigger4 * trigger3}
trigger > 0

chart-time 1 year
draw ma(13)
draw ma(26)
]




Here is a look at this filter's triggers on only your three stated tickers:

Fetcher[
symlist(PR,SSL,TTE)
not etf
close > 5
set{ma_diff, abs( MA(13) - MA(26) )}
set{ma_pct_diff, ma_diff / close}
set{trigger1,count(ma_pct_diff between .95 and 1.05,1)}

set{trigger2,count(5 day slope of ma(13) between -0.02 and 0.02,1)}
set{trigger3,count(5 day slope of ma(26) between -0.02 and 0.02,1)}

set{trigger4,trigger1 * trigger2}
set{trigger,trigger4 * trigger3}
trigger > -1

chart-time 1 year
draw ma(13)
draw ma(26)
]



StockFetcher Forums · General Discussion · horizontal and very close weekly moving averages<< >>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 2026 - 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.