PureBytes Links
Trading Reference Links
|
Try something like this:
=======================
Volume - excess signals
=======================
---8<------------------
{ http://www.metastocktools.com }
{ User inputs }
threshold:=Input("Volume Threshold [0~100%]",
0,100,50);
pds:=Input("Lookback months",1,120,6)*21;
plot:=Input("[1]Xcess Vol signals, [2]Volume, [3]Volume%",1,3,1);
{ Volume > threshold signals }
MaxVol:=HHV(V,pds);
VolPercent:=V/MaxVol*100;
signals:=VolPercent>=threshold;
{ Plot in own window }
If(plot=1,0,
If(plot=2,HHV(V,pds)*threshold/100,threshold));
If(plot=1,signals,If(plot=2,V,VolPercent))
---8<------------------
jose '-)
--- In equismetastock@xxxxxxxxxxxxxxx, "Marty" <martin@xxxx> wrote:
>
>
> Any ideas how to find a volume spike that equals or comes within a
> percentage of a prior spike within say the last three to nine
> months.
> Martin
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> 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/
|