PureBytes Links
Trading Reference Links
|
Hello every one
Often volume activity is a precursor to a big move in price.
One way to find volume increase woluld be to use the formula
A:=C<Ref(C,-1);
B:=C>=Ref(C,-1);
X:=Cum(A);
X:=LastValue(Max(1,X-ValueWhen(1,B,X)));
Min(0,ROC(C,X,%));
This would tell us no. of days volume is continuously
increasing.Although this is very useful,this does not tell us the
compleate picture.
I wanted to make a formula which finds,no.of days volume is
consistently more than the average volume
for example volume of last 5 days is 5000, 5600, 6000,5100,75200,4000
But the volume before those 5 days were 2000, 700, 1500,3540 etc
In this case volume is more in the last 5 days
So I want to know how to find the no. of days that have passed the
volume is increasing. If we take the previous example the answer
would be 5 .
Safdar
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|