StockFetcher Forums · General Discussion · volume spike within certain amount of days<< >>Post Follow-up
dunno
2 posts
msg #161054
Ignore dunno
5/5/2024 6:40:30 PM

does anyone know if possible to filter for a surge in volume that happened in 1/x amount of days.

for example, volume reached 200% above average volume(30) within the last 5 days.

obviously, that syntax doesnt work. but looking for that

snappyfrog
659 posts
msg #161055
Ignore snappyfrog
modified
5/5/2024 9:43:58 PM

maybe,

Fetcher[
set{volratio, volume 1 day ago / avgvol(30)}
set{ratio, volratio * 100}
ratio crossed above 200 in the last 5 days
draw ratio line 200
add column separator
add column volume 1 day ago{Vol 1-day ago}
add column avgvol(30)
draw avgvol(30)
]



sr7
107 posts
msg #161059
Ignore sr7
5/6/2024 3:21:20 PM



How about 50% of the 60 day average volume, something like:


Fetcher[


/* Volume Spike scan */

Show stocks where Volume is > 50% above average volume(60) within the last 5 days


/* and close is > open */

and close is > 1



]





xarlor
565 posts
msg #161062
Ignore xarlor
5/6/2024 3:43:34 PM

Fetcher[
optionable

set{tvol,average volume(30) 1 day ago * 3}
set{trigger,count(volume > tvol,5)}
trigger > 0

add column average volume(30)
add column tvol
draw average volume(30) 1 day ago
]



sr7
107 posts
msg #161064
Ignore sr7
5/6/2024 4:33:14 PM

60 day volume; 3 Days.


Fetcher[



/* Volume Spike v.2 scan */


/* The S.S.I.-5 COLUMN must show an 80 or above;
stocks are also sorted that way (descending).

Also confirm a BUY signal with the Vortex Indicator (below charts).*/


market is not etf
market is not otcbb


/* 50% Volume spike within 3 DAYS */
Show stocks where Volume is > 50% above average volume(60) within the last 3 days
and average volume(60) is above 100000


/* Stock Price things */
and close is > 2% above open
and close is > 1




/* T.A.I.'s found on stockfetcher go here: */

/* 5-Day Slow Stochastics */
draw Slow Stochastics Fast %K(5,2) line at 80
add column Slow Stochastics Fast %K(5,2) {SSI-5}
sort column 5 descending


/* 14 period Vortex Trend Indicator */
set{plus_vm, abs(high minus low 1 day ago)}
set{minus_vm, abs(low minus high 1 day ago)}

set{plus_vm14, sum(plus_vm, 14)}
set{minus_vm14, sum(minus_vm, 14)}

set{atr1, average true range(1)}
set{tr14, sum(atr1, 14)}

set{vortex_bull, plus_vm14 / tr14}
set{vortex_bear, minus_vm14 / tr14}

and weekly vortex_bear crossed weekly vortex_bull

/* Plots */
draw indicator vortex_bull
draw indicator vortex_bear on plot vortex_bull





]






sr7
107 posts
msg #161077
Ignore sr7
modified
5/9/2024 10:39:51 PM



Volume Spike v.3 scan:

1. Changed it to 30-day Average Volume.
2. Added Columns for Volume and Average Volume.
3. Changed it to 1 DAY instead of 3 (you get MORE RESULTS!).
4. Changed Slow Stochastics Fast from 5-days to 8-days (less volatile).
5. Only shows the ones where the Stochastic crossed above the 80 line for the 1st time





Fetcher[


/* Volume Spike v.3 scan:
1. Changed it to 30-day Average Volume.
2. Added Columns for Volume and Average Volume.
3. Changed it to 1 DAY instead of 3 (you get MORE RESULTS!).
4. Changed Slow Stochastics Fast from 5-days to 8-days (less volatile).
5. Only shows the ones where the Stochastic crossed above the 80 line for the 1st time




The S.S.I.-8 COLUMN must show an 80 or above;
stocks are also sorted that way (descending).

Also confirm a BUY signal with the Vortex Indicator (below charts).*/


market is not etf
market is not otcbb


/* 50% Volume spike within 1 DAY */
Show stocks where Volume is > 50% above average volume(30) within the last 1 day
and average volume(30) is above 100000


/* Stock Price things */
and close is > 2% above open
and close is > 1




/* T.A.I.'s found on stockfetcher go here: */

/* 8-Day Slow Stochastics */
Slow Stochastics Fast %K(8,2) crossed above 80 within the last 1 day
draw Slow Stochastics Fast %K(8,2) line at 80
draw Slow Stochastics Fast %K(8,2) line at 78
add column Average volume(30)
add column volume
add column Slow Stochastics Fast %K(8,2) {SSI-8}
sort column 7 descending



/* 14 period Vortex Trend Indicator */
set{plus_vm, abs(high minus low 1 day ago)}
set{minus_vm, abs(low minus high 1 day ago)}

set{plus_vm14, sum(plus_vm, 14)}
set{minus_vm14, sum(minus_vm, 14)}

set{atr1, average true range(1)}
set{tr14, sum(atr1, 14)}

set{vortex_bull, plus_vm14 / tr14}
set{vortex_bear, minus_vm14 / tr14}

and weekly vortex_bear crossed weekly vortex_bull

/* Plots */
draw indicator vortex_bull
draw indicator vortex_bear on plot vortex_bull

]






StockFetcher Forums · General Discussion · volume spike within certain amount of 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.