Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

% vol 50 day avg. Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
mdbecker5
Posted : Monday, July 1, 2013 8:30:59 AM
Registered User
Joined: 12/6/2011
Posts: 13

I need a % vol. for 50day avg. Example: If a stock shows 100% vol at day's end it's at avg. vol. if a stock shows 100% at 12pm it's special. I have a %vol setup with tradestation , I look at stock with high % vol in the first tens minutes . again a stock could have 50% in the first 20 mins. of trading and end up with 250 % at the end of day. Mitch

mdbecker5
Posted : Monday, July 1, 2013 2:37:27 PM
Registered User
Joined: 12/6/2011
Posts: 13

can u help ?

StockGuy
Posted : Monday, July 1, 2013 2:43:08 PM

Administration

Joined: 9/30/2004
Posts: 9,187

Add "Today's Volume Buzz" as a column in your watchlist.  It uses the 100 day average instead of a 50-day average, but I think the results will be helpful.

mdbecker5
Posted : Monday, July 1, 2013 3:07:49 PM
Registered User
Joined: 12/6/2011
Posts: 13

input:AvgDays(10);

var:
 VVol( 0 ),
 AvgVVol( 0 ),
 PVol( 0 );

if BarType >= 2 then { ie, not tick/minute data } begin
 VVol=V;
 AvgVVol=AverageFC(V,AvgDays);
  if AvgVVol<>0 then PVol=(VVol/AvgVVol);
 Plot1(VVol,"VolToday") ;
 Plot2(AvgVVol,"AvVol") ;
  Plot3(PVol,"%Vol");end;

This is the formula for 10 days. vol. buzz is not correct. need 10 days not 50.

Bruce_L
Posted : Tuesday, July 2, 2013 9:03:52 AM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138

It is not possible to create a formula for this. Volume Buzz is as close as you are going to get if you need to include the time of day in the calculations.

Note that the sort order of a Volume Buzz type formula for any particular number of days is the same if the time of day is not included and will have the same results at the end of the day as the Volume Buzz type formula.

So the following formula will have the same sort order as Volume Buzz:

100 * V / AVGV100

A 50-Period version would just be:

100 * V / AVGV50

And a 10-Period version would just be:

100 * V / AVGV10



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
Users browsing this topic
Guest-1

Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.