StockFetcher Forums · Filter Exchange · 2nd/3rd/4th/etc. lowest/highest close within the last X number days<< >>Post Follow-up
styliten
313 posts
msg #161758
Ignore styliten
modified
4/2/2025 3:13:12 PM

As shown in the heading, is there any easy way to show:

2nd/3rd/4th/etc. lowest/highest close/ema(10)/etc., etc. within the last X number days?

i.e.,

set{var101, sum of (5 highest closes in the last 10 days) minus sum of (5 lowest closes in the last 10 days)}



xarlor
593 posts
msg #161759
Ignore xarlor
4/3/2025 8:53:00 AM

We can do this when there are only three values. However, without arrays, I'm not sure this can be accomplished with SF's limited framework.

Fetcher[
symlist(spy,qqq,dia)

set{c0,close}
set{c1,close 1 day ago}
set{c2,close 2 days ago}

set{m1,max(c0,c1)}
set{1st,max(m1,c2)}

set{L1,min(c0,c1)}
set{3rd,min(L1,c2)}

set{MID1,c0 + c1}
set{MID2,MID1 + c2}
set{MID3,MID2 - 1st}
set{2nd,MID3 - 3rd}

add column separator
add column 1st
add column 2nd
add column 3rd
]



StockFetcher Forums · Filter Exchange · 2nd/3rd/4th/etc. lowest/highest close within the last X number days<< >>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.