StockFetcher Forums · General Discussion · Please help put this filter into stockfetcher code<< >>Post Follow-up
woodshedder
11 posts
msg #66102
Ignore woodshedder
8/12/2008 12:52:17 AM

I'm having a lot of problems getting the first 2 lines of this filter to work.
Any suggestions would be greatly appreciated.

Today's volume >=200% over yesterday's volume
distance from close yesterday to close today >= 2*ATR(10)
Two week gain <=10%
1-Month gain <=10%

Thanks!

guru_trader
485 posts
msg #66103
Ignore guru_trader
modified
8/12/2008 3:38:26 AM

To get you started ...

Fetcher[
/* 1-day change in volume */
and vroc(1,1) > 200
and add column vroc(1,1)

/* ATR calculations */
and set{ 2_x_atr, atr(10) * 2 }
and add column 2_x_atr

/* 1-day change > 2*ATR(10) */
and set{ close_diff, close - close 1 day ago }
and add column close_diff
and close_diff > 2_x_atr

/* Weekly and Monthly % Rates of Change */
and price gained less than 10% over the last 2 weeks
and price gained less than 10% over the last 1 month
]



woodshedder
11 posts
msg #66126
Ignore woodshedder
8/12/2008 11:33:14 PM

Thank you very much.

I'm getting ready to try it right now.

StockFetcher Forums · General Discussion · Please help put this filter into stockfetcher code<< >>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.