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

Pip Detector by Jose Silva for Metastock
kaiji
over 13 years ago
Metastock

Rating:
5 / 5 (Votes 1)
Tags:
metastock, pattern

Detects the smallest traded price movement (pip) on a chart.

Similar Indicators / Formulas

123 Ross Hook Exploration
Submitted by kaiji over 14 years ago
BPDL Trend Filter Oscillator
Submitted by chsmcp about 11 years ago
Adaptive Wilders Smoothing
Submitted by aashish51 about 12 years ago
Cycle Indicator by Bill Irwin
Submitted by roszyk about 13 years ago
Flat Market Indicator (FMI)
Submitted by chsmcp about 11 years ago
Ortalama fiyat degiskenligi gostergesi
Submitted by tasma about 12 years ago

Indicator / Formula

Copy & Paste Friendly
{ Detects lowest historical Pip on chart }
{ Use on any periodicity }

{ Copyright 2005 Jose Silva }
{ For personal use only }
{ http://www.metastocktools.com }

noPip:=100;
p1:=If(H-O=0,noPip,H-O);
p2:=If(O-L=0,noPip,O-L);
p3:=Abs(If(O-C=0,noPip,O-C));
p4:=If(H-C=0,noPip,H-C);
p5:=If(C-L=0,noPip,C-L);
p6:=If(H-L=0,noPip,H-L);
p7:=Abs(If(O-Ref(C,-1)=0,noPip,O-Ref(C,-1)));
minPip:=Min(p1,Min(p2,Min(p3,Min(p4,Min(p5,
Min(p6,p7))))));

{ With thanks to MG Ferreira }
Lin2Log:=Log(Lowest(minPip)+.000001)/Log(10);
pip:=Exp((Int(Lin2Log)-1)*Log(10));

pip

0 comments

Leave Comment

Please login here to leave a comment.

Back