PureBytes Links
Trading Reference Links
|
cresus_digit
If I understand you properly then this should do the trick.
Pe:=Input("Periods",3,1000,10);
B:=LastValue(Cum(1)-(Pe-1))=Cum(1);
ValueWhen(1,B,LastValue(Mov(V,Pe,E)));
Roy
----- Original Message -----
From: "cresus_digit" <c_tanguay@xxxxxxxxxxx>
To: <equismetastock@xxxxxxxxxxxxxxx>
Sent: Thursday, January 22, 2004 5:14 AM
Subject: [EquisMetaStock Group] Average of volume for the last 10 days
> Hello everyone,
> I would like to create an indicator that tell me the average of
> volume for the last 10 days. I just want an horizontal line that
> appear from the last day to (last day-9).
> I try this but it's not what I want:
>
> Pe:=Input("Periods",3,1000,10);
> Z:=LastValue(LinearReg(v,Pe));
> Y:=LastValue(Cum(1))-Cum(1);
> U:=Z-(LastValue(LinRegSlope(v,Pe))*Y);
> R:=0-(LastValue(Cum(1))-Pe);
> U+Ref(v,R)-Ref(v,R);
>
> Any idea ?
>
> Regards
>
>
>
>
>
> 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/
>
>
>
>
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/
|