PureBytes Links
Trading Reference Links
|
Dusant, your solution will skew Volume value averages towards the
positive. If today's Close = yesterday's Close, Volume should be
neither positive nor negative.
If(C<Ref(C,-1),-V,If(C>Ref(C,-1),V,0))
jose '-)
--- In Metastockusers@xxxxxxxxxxxxxxx, "Dusant" <dusant@xxxx> wrote:
> Pablo,
> The earlier solution posted should be fine.
> if(c >= ref(c,-1), v, -v)
> Dusant
> Chief Architect
> http://www.candlestrength.com/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|