PureBytes Links
Trading Reference Links
|
still the problem doesnt rely on the formula itself, i have come with:
if(c>ref(c-1),v,if(?>0,v,0)
and for negative
if (c<ref(c-1),-v,0)
im writing this by heart,so it might be slightly diferent
i have looked over and it seems i ll have to make it on excell, but either
way i want to point out that its crucial to take into account the change of
direction and all the rest of the ticks that trade at same value, to make
sure to evaluate if the volume is + or -, if someone knows any indicator
like this i would like to know about it
bye
----- Original Message -----
From: "Jose" <josesilva22@xxxxxxxxx>
To: <Metastockusers@xxxxxxxxxxxxxxx>
Sent: Wednesday, February 11, 2004 10:46 AM
Subject: [Metastockusers] Re: volume formula help
> 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
>
>
>
>
>
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/
|