StockFetcher Forums · Filter Exchange · simple consistent filter needs some help<< >>Post Follow-up
push5280
197 posts
msg #155949
Ignore push5280
modified
2/25/2021 11:22:48 AM

This filter is super simple and takes out a lot of guess work regarding entries. I am hung up on some coding which I'm really not sure is possible to code in SF but I know there are more capable folks on here than I.

This scan looks for stocks at a 63 day low and then draws a price line at the prior days open. You don't even consider buying until the next time the entire candle crosses the line. If the entire candle doesn't cross the price line, you move on to the next stock.

What I'm looking for help with is this...
Some days there are a few hits some days more but it takes A LOT of clicking through charts to find the stocks that have cleared the price line. Is there a way to code something more automated that will tell when the current days low has cleared the price line? I've been racking my brain but can't seem to get a handle on it. Any help is appreciated !!!!
Fetcher[
/*My Indicators*/
set{msval, shares outstanding * .01}
set{m_c, close * shares outstanding}
set{market_cap, m_c *1,000,000}
set{6molo, count(close is at 6 month low, 1)}

/* Criteria*/
market is not ETF
market is not otcbb
shares outstanding > 0
market_cap < 2,000,000,000
average volume(252) > 100,000
close is at 6 month low

/*charting*/
do not draw market_cap
draw close 6 month low
draw price line at open 1 day ago
draw 6molo
]




snappyfrog
651 posts
msg #155957
Ignore snappyfrog
2/25/2021 5:34:00 PM

Is this what you are looking to see?

I changed close is at 6 month low to close 1 day ago is at 6 month low and added /*myaddition*/ at the bottom of your scan.

Fetcher[

/*My Indicators*/
set{msval, shares outstanding * .01}
set{m_c, close * shares outstanding}
set{market_cap, m_c *1,000,000}
set{6molo, count(close is at 6 month low, 1)}

/* Criteria*/
market is not ETF
market is not otcbb
shares outstanding > 0
market_cap < 2,000,000,000
average volume(252) > 100,000
close 1 day ago is at 6 month low

/*charting*/
do not draw market_cap
draw close 6 month low
draw price line at open 1 day ago
draw 6molo

/*myaddition*/
open > close 6 month low
close > close 6 month low
]



xarlor
561 posts
msg #155961
Ignore xarlor
2/25/2021 9:46:37 PM

Slight twist on your criteria, but why not just look for stocks who's low crossed above the open 6-month low?

Fetcher[


/*My Indicators*/
set{msval, shares outstanding * .01}
set{m_c, close * shares outstanding}
set{market_cap, m_c *1,000,000}
set{6molo, count(close is at 6 month low, 1)}

/* Criteria*/
market is not ETF
market is not otcbb
shares outstanding > 0
market_cap < 2,000,000,000
average volume(252) > 100,000

/*charting*/
do not draw market_cap
draw price line at open 6 month low

low crossed above open 6 month low
do not draw close 6 month low
do not draw open 6 month low
]



StockFetcher Forums · Filter Exchange · simple consistent filter needs some help<< >>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.