PureBytes Links
Trading Reference Links
|
--- In equismetastock@xxxxxxxxxxxxxxx, "Jose Silva"
<josesilva22@xxx> wrote:
>
> Khalid, which kind of signals would you like the Volume % change
> exploration to look for?
>
>
> jose '-)
> http://www.metastocktools.com
>
>
>
> --- In equismetastock@xxxxxxxxxxxxxxx, "Khalid
> Masood" <dr_khalidmasood@> wrote:
> >
> > Thanks Jose,
> >
> > You really programmed what I needed. That's working fine.
> > It will kind enough if you can provide me this as an exploration.
> >
> > With warmest regards.
> >
> > Khalid.
> >
> >
> >
> > --- In equismetastock@xxxxxxxxxxxxxxx, "Jose Silva"
> > <josesilva22@> wrote:
> >
> > 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@> 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
>
Hi Jose,
Actually I want an exploration which can scan about 100 stocks
showing value of volume in % (increase or decrease) from previous
day,in a column. I use it in my daily free analysis report. For the
time being I calculate it manually, which is very time consuming.
To sum up I need code for "today's volume is </> yesterday's
volume". I donot know how to write a code for % increase or decrease.
I will be obliged if you provide me a code.
Thanks & Regards.
Khalid
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/
|