StockFetcher Forums · General Discussion · Basic question...how to add column to show % price change for last x days?<< >>Post Follow-up
RocketFetcher
59 posts
msg #35628
Ignore RocketFetcher
4/16/2005 7:48:45 PM

I would like to add a column to a filter; that displays the % change in the closing price over the last 30 days. Have been through the manual, but I'm sure it's there, but haven't found it.
Anyone have a moment to reply on this?
Thanks!!


txtrapper
548 posts
msg #35629
Ignore txtrapper
4/16/2005 8:29:59 PM

Rocketfetcher try this;

/* CC is the number of consecutive days close below previous close,
in other words the LOSING STREAK */

set{CC,days(close is above close 1 day ago,100)}


Thanks goes to Avery for this one!


TxTrapper
-------------





txtrapper
548 posts
msg #35630
Ignore txtrapper
4/16/2005 8:45:14 PM

Rocketfetcher you will also need "and add column cc" in your syntax;

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

/* CC is the number of consecutive days close below previous close,
in other words the LOSING STREAK */

set{CC,days(close is above close 1 day ago,100)}
show stock where close is above .50
and volume is above 100000
and add column cc

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

Change the parameters to fit your trading style.


TxTrapper



TheRumpledOne
6,407 posts
msg #35631
Ignore TheRumpledOne
4/16/2005 9:21:10 PM

Use the following in your filters:

Fetcher[
set{c30, close 30 days ago}
set{diff, close - c30}
set{q1, diff / c30}
set{pct30, q1 * 100}
close above 1
close below 2
volume above 100000
add column c30
add column pct30
]



Of course, use your own close, volume and other selection criteria.

MAY ALL YOUR FILLS BE COMPLETE.



StockFetcher Forums · General Discussion · Basic question...how to add column to show % price change for last x 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.