StockFetcher Forums · Filter Exchange · Today’s Low vs Lows of the past 5 days.<< >>Post Follow-up
mktmole
325 posts
msg #50231
Ignore mktmole
2/25/2007 2:30:05 PM


/* Today’s Low vs Lows of the past 5 days. */

Fetcher[set{L1, count(low below low 1 day ago,1)}
set{L2, count(low below low 2 days ago,1)}
set{L3, count(low below low 3 days ago,1)}
set{L4, count(low below low 4 days ago,1)}
set{L5, count(low below low 5 days ago,1)}

add column L5
add column L4
add column L3
add column L2
add column L1

close above 50
and average volume(90) above 1000000
]



------------------

The above is Ok but would like TRO's Trend Display idea of
Set{a1, L6 * 1}
Set{a2, L5 * 10}
Set{a3, L3 * 100}
Set{a4, L2 * 1000}
Set{a5, L1 * 10000}

and add eachcolumns etc
and sort by descending "Low Trend", where column values are = to 1


Any help would be appreciated, thank you!




TheRumpledOne
6,407 posts
msg #50234
Ignore TheRumpledOne
modified
2/25/2007 3:51:45 PM

/* Today’s Low vs Lows of the past 5 days. */

Fetcher[
set{L1, count(low below low 1 day ago,1)}
set{L2, count(low below low 2 days ago,1)}
set{L3, count(low below low 3 days ago,1)}
set{L4, count(low below low 4 days ago,1)}
set{L5, count(low below low 5 days ago,1)}

Set{a1, L1 * 1}
Set{a2, L2 * 10}
Set{a3, L3 * 100}
Set{a4, L4 * 1000}
Set{a5, L5 * 10000}

set{t1 , a1 + a2 }
set{t2 , a3 + t1 }
set{t3 , a4 + t2 }
set{LTREND , a5 + t3 }

add column LTREND

close above 50
and average volume(90) above 1000000

SORT COLUMN 5 DESCENDING

]



LTREND's format is abcde where a = 5 days ago, b = 4 days ago, etc...

Just like looking at a chart!




mktmole
325 posts
msg #50244
Ignore mktmole
2/25/2007 7:10:26 PM

TRO, ...Thank you!


StockFetcher Forums · Filter Exchange · Today’s Low vs Lows of the past 5 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.