i'm looking for total outstanding shares Tks Mitch
|
This morning i caught tsla, aapl from indicator. they had 25% in the first 12 mins.
|
100 days is to long, 10 days works great for day traders, it been working fine for the 30 years i've been trading. I guess its what your looking at in your trading.
|
make sure u use daily on easyscan
|
(V / AVGV50)
1.0 = 100% for day
.50 = 50% for day and so on.
realtime will show if a stock has real vol.
example: in the first 10mins if it shows .20 its already done 20 % of it's vol. nice feature.
no neg numbers vs vol. buzz. . mitch
P.S i use 10 days. works great !!!
|
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.
|
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
|
I need exp mov. avg 50 above and below for 60day just adding (exp) instead of (simple)
|
can u make higher high and a lower low as a counter maybe 60bars.
|