Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Volume Flow Indicator for Metastock
sylartrader
almost 13 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.

Similar Indicators / Formulas

Guppy MMA Divergence Oscillator
Submitted by kaiji over 14 years ago
Schaff Trend Cycle Oscillator
Submitted by kaiji over 13 years ago
3-10 Oscillator
Submitted by mayurs over 11 years ago
Relative Vigor Index
Submitted by vargasc1 almost 13 years ago
Bull and Bear Balance Indicator
Submitted by kaiji over 14 years ago

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

1. mahaboobbasha81

error formula

2. mkapucu

Hello there,
Try deleting the last comma

Leave Comment

Please login here to leave a comment.

Back