PureBytes Links
Trading Reference Links
|
Happy New Year, Dr.KMK. :)
===============
Volume % change
===============
---8<------------------------
{ Volume % change v1.0
http://www.metastocktools.com }
{ Indicator inputs }
pds:=Input("Volume lookback periods",1,2520,21);
type:=Input("% type: [1]Standard, [2]Normalized",1,2,1);
{ Volume % change }
Vper:=(V/Ref(V,-pds)-1)*100;
{ Normalized Vol change to +-100% }
norm:=If(V<Ref(V,-pds),Vper,(1-Ref(V,-pds)/V)*100);
{ Choose Std/Norm plot }
Volper:=If(type=1,Vper,norm);
{ Historical average }
avg:=Cum(VolPer)/Cum(IsDefined(VolPer));
{ Plot in own window }
avg;VolPer
---8<------------------------
jose '-)
http://www.metastocktools.com
--- In equismetastock@xxxxxxxxxxxxxxx, "Khalid
Masood" <dr_khalidmasood@xxx> wrote:
>
> Hi,
>
> Happy New Year,
>
> I need an exploration which can show today's volume increase or
> decrease in term of percentage from yesterday or any back periods.
>
> Thanks in advance.
>
> Dr.KMK
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/
|