Skip to main content

Volume Flow Indicator for Metastock

sylartrader about 15 years ago Metastock

  • Rating:
    5 / 5 (Votes 2)
  • Tags:
    oscillator, metastock

Volume Flow Indicator (VFI) by Markos Katsanos

Using Money Flow to Stay with the Trend
Markos Katsanos’ article “Using Money Flow to Stay with the Trend” did not have a MetaStock Trader’s Tip as the article contained all the formulas.

Indicator / Formula

Copy & Paste Friendly
PERIOD:=Input("PERIOD FOR VFI",5,1300,130);
COEF:=.2;
VCOEF:=Input("MAX VOLUME CUTOFF",0,50,2.5);
INTER:=Log(Typical())-Log(Ref(Typical(),-1));
VINTER:=Stdev(INTER,30);
CUTOFF:=COEF*VINTER*C;
VAVE:=Ref(Mov(V,PERIOD,S),-1);
VMAX:=VAVE*VCOEF;
VC:=If(V<VMAX,V,VMAX);
MF:=Typical()-Ref(Typical(),-1);
VFI:=Sum(If(MF>CUTOFF,+VC,If(MF<-CUTOFF,-VC,0)),PERIOD)/VAVE;
Mov(VFI,3,E); 

2 comments

Leave Comment

Please login here to leave a comment.