Actually I like to study volume in intraday, which one is up or down or 
neutral. Here my formula, but the problem I can't get total volume for each 
catagory (up, down or neutral).

Start:=000900;
End:=001700;
Period:=Start AND End;
Upvol:=If(C>O,V,0);
Dnvol:=If(C<O,V,0);
Neuvol:=If(C=O,V,0);

SumUpvol:=Sum(Upvol,Period);
SumDnvol:=Sum(Dnvol,Period);
SumNeuvol:=Sum(Neuvol,Period);


SumUpvol;
SumDnvol;
SumNeuvol

Help needed, thank you.

Regards,
Green



Reply via email to