| 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 749 posts
 msg #161055
 - Ignore snappyfrog
 modified
 | 5/5/2024 9:43:58 PM 
 maybe,
 
 
 
 
 
 | 
| sr7 163 posts
 msg #161059
 - Ignore sr7
 | 5/6/2024 3:21:20 PM 
 
 
 How about 50% of the 60 day average volume, something like:
 
 
 
 
 
 
 
 
 | 
| xarlor 619 posts
 msg #161062
 - Ignore xarlor
 | 5/6/2024 3:43:34 PM 
 
 
 
 
 | 
| sr7 163 posts
 msg #161064
 - Ignore sr7
 | 5/6/2024 4:33:14 PM 
 60 day volume; 3 Days.
 
 
 
 
 
 
 
 
 
 | 
| sr7 163 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
 
 ]
 
 
 
 
 
 
 
 |