PureBytes Links
Trading Reference Links
|
Steve,
This is my implementation of the WCVFI. It's tested and works.
(It gives only '1 cycle' of cum. floating volume)
----------------
BackVolume:=LastValue(Cum(V))-Cum(V)+V;
float:=Input("# Shares (millions) ",1,100,1);
float=float*1000000;
if(BackVolume>=float,+1,-1);
------------------
Regards
Leo
|