ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function...

42
1 John Ehlers John Ehlers ANTICIPATING TURNING POINTS ANTICIPATING TURNING POINTS Left Left- Brained Concepts Brained Concepts for Traders in their Right Minds for Traders in their Right Minds

Transcript of ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function...

Page 1: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

1

John EhlersJohn Ehlers

ANTICIPATING TURNING POINTSANTICIPATING TURNING POINTS

LeftLeft--Brained Concepts Brained Concepts for Traders in their Right Mindsfor Traders in their Right Minds

Page 2: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

2

John EhlersJohn Ehlers

This Session is an excerpt from my Runner Up Paper This Session is an excerpt from my Runner Up Paper for the MTA Charles H. Dow Awardfor the MTA Charles H. Dow Award

www.mta.orgwww.mta.orgActivities Tab Activities Tab –– Charles H. Dow AwardCharles H. Dow Award

also available atalso available atwww.eminiz.comwww.eminiz.com

Page 3: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

3

John EhlersJohn Ehlers

Normal (Gaussian) Probability Distribution Function (PDF) Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Datais Commonly Assumed for Market Data

0

0.05

0.1

0.15

0.2

0.25

0.3

-3

-2.8

-2.6

-2.4

-2.2 -2

-1.8

-1.6

-1.4

-1.2 -1

-0.8

-0.6

-0.4

-0.2 -0 0.2

0.4

0.6

0.8 1

1.2

1.4

1.6

1.8 2

2.2

2.4

2.6

2.8 3

Normal PDF Cumulative Normal PDF

0

0.1

0.2

0.3

0.4

0.5

0.6

0.7

0.8

0.9

1

-3

-2.8

-2.6

-2.4

-2.2 -2

-1.8

-1.6

-1.4

-1.2 -1

-0.8

-0.6

-0.4

-0.2 -0 0.2

0.4

0.6

0.8 1

1.2

1.4

1.6

1.8 2

2.2

2.4

2.6

2.8 3

0 = 50%+1 = 85%+2 = 98%+3 = 99.9%

2

2

2

2

x

eP

Normal PDF is attractive because it can be achieved using several random variables due to the central limit theorem

But is Normal the right PDF for market data?

Page 4: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

4

John EhlersJohn EhlersCONSIDER A THEORETICAL SQUAREWAVECONSIDER A THEORETICAL SQUAREWAVE

-1.5

-1

-0.5

0

0.5

1

1.5

Square Wave Binary PDF of Square Wave

A Square Wave cannot be traded with conventional indicators because the move is over before any indicator can show the move

Page 5: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

5

John EhlersJohn EhlersNEXT NEXT -- CONSIDER A SINEWAVECONSIDER A SINEWAVE

-1

-0.8

-0.6

-0.4

-0.2

0

0.2

0.4

0.6

0.8

1

Sine Wave Sine Wave PDF

The Probability Distribution of a Sinewave is similar to that of a Squarewave

This is why most traders have trouble trading with cycles

The cyclic turning point must be anticipated

Page 6: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

6

John EhlersJohn EhlersHow Do We Determine the Market PDF?How Do We Determine the Market PDF?

-1-0.9-0.8-0.7-0.6-0.5-0.4-0.3-0.2-0.1

00.10.20.30.40.50.60.70.80.9

1

Create the waveform bystringing beads on a horizontal wire frame

Rotate wire frame toenable beads to stack up

Height of the beadstacks is the PDFof the Waveform

Page 7: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

7

John EhlersJohn EhlersChannel Limited PDF Generator CodeChannel Limited PDF Generator Code

Inputs:Length(20);

Vars:HH(0),LL(0),J(0),I(0);

Arrays:Filt[2000](0),Bin[100](0);

HH = Close;LL = Close;For I = 0 to Length -1 Begin

If Close[I] > HH then HH = Close[I];If Close[I] < LL then LL = Close[I];

End;If HH <> LL Then Value1 = (Close - LL) / (HH - LL);Filt[CurrentBar] = (Value1 + 2*Value1[1] + Value1[2]) / 4;For I = 0 to 100 Begin

If Filt[J] >= I/100 and Filt[J] < (I + 1)/100 Then Bin[I] = Bin[I]+1;End;For I = 0 to 99 Begin

Print(File("c:\tsgrowth\pdf.csv"), I, ",", Bin[I]);End;Plot1(Filt[CurrentBar]);

Page 8: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

8

John EhlersJohn EhlersChannel PDF for Treasury BondsChannel PDF for Treasury Bonds

Clearly, Channel Limited Detrending produces Sinewave-Like PDFs

20 Bar Channel over 30 Years

40 Bar Channel over 30 Years

Page 9: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

9

John EhlersJohn EhlersSPY Weekly for Last Five YearsSPY Weekly for Last Five Years

Consistent 36 Week Cycle is MeasuredConsistent 36 Week Cycle is Measured(code from Jan 2008 Stocks & Commodities)(code from Jan 2008 Stocks & Commodities)

Page 10: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

10

John EhlersJohn EhlersCONVINCED THERE ARE TRADEABLE CYCLES?CONVINCED THERE ARE TRADEABLE CYCLES?

•• Market Cycles have been measuredMarket Cycles have been measured–– With Probability Distribution FunctionsWith Probability Distribution Functions–– With Spectral AnalysisWith Spectral Analysis

•• Trading with Cycles is difficult because the Trading with Cycles is difficult because the turning points turning points MUSTMUST be anticipatedbe anticipated–– Conventional Indicators are basically useless Conventional Indicators are basically useless

because of lagbecause of lag•• I will show you two ways to anticipate the I will show you two ways to anticipate the

turning points using cyclesturning points using cycles–– Correlating prices with a sinewave and advancing Correlating prices with a sinewave and advancing

the phasethe phase–– BandPass FilteringBandPass Filtering

Page 11: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

11

John EhlersJohn Ehlers

Sine Correlation SystemSine Correlation System

Page 12: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

12

John EhlersJohn EhlersSine Correlation SystemSine Correlation System

•• DetrendDetrend prices by prices by highpasshighpass filteringfiltering•• Correlate a Correlate a sinewavesinewave to the to the detrendeddetrended price price

by maximizing the sum of the product across:by maximizing the sum of the product across:–– Full range of cycle periodsFull range of cycle periods–– 360 degrees of phase for each period360 degrees of phase for each period

•• Resulting Resulting sinewavesinewave (period and phase) is the (period and phase) is the signalsignal

•• Advance the signal by two bars to get a Advance the signal by two bars to get a leading signalleading signal

•• Crossover of the two signal lines are the Crossover of the two signal lines are the trading signalstrading signals

Page 13: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

13

John EhlersJohn Ehlers

Sine Correlation PerformanceSine Correlation Performancefor Five Years on @ES.Dfor Five Years on @ES.D

Net Profit:Net Profit: $50,637$50,637# Trades:# Trades: 185 (about one trade every 1.25 weeks)185 (about one trade every 1.25 weeks)% Profitable:% Profitable: 63.8%63.8%Profit Factor:Profit Factor: 1.871.87Trade Drawdown:Trade Drawdown: ($5,375)($5,375)

Page 14: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

14

John EhlersJohn Ehlers

BandPass FilteringBandPass Filtering

Page 15: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

15

John EhlersJohn EhlersBandPass Filter SystemBandPass Filter System

•• BandPass filtering through a narrow passband filter BandPass filtering through a narrow passband filter reduces prices to a sinewave with slowly varying reduces prices to a sinewave with slowly varying phase and amplitudephase and amplitude

•• This technique This technique ONLYONLY works because the filtered works because the filtered prices are quasiprices are quasi--sinewavesinewave–– The period of the cycle must be knownThe period of the cycle must be known–– DonDon’’t try this on a Stochastic, RSI, or other oscillatort try this on a Stochastic, RSI, or other oscillator

•• From the calculus we know thatFrom the calculus we know thatd(Sin(d(Sin(t))/dt = t))/dt = *Cos(*Cos(t)t)

•• Therefore, a 90 degree leading waveform can be Therefore, a 90 degree leading waveform can be obtained by taking a one bar momentum and dividing obtained by taking a one bar momentum and dividing it by the angular frequency (multiply by Period/2it by the angular frequency (multiply by Period/2))

Page 16: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

16

John EhlersJohn EhlersBandPassBandPass Filter SystemFilter System

•• BandpassBandpass filter the price for a selected cycle filter the price for a selected cycle period period –– Call this I for InCall this I for In--PhasePhase

•• Multiply one bar momentum of the Multiply one bar momentum of the bandpassbandpassfiltered signal by (Period/2filtered signal by (Period/2–– Call this Q for Call this Q for QuadratureQuadrature

•• Create a 60 degree leading signalCreate a 60 degree leading signal–– Lead = .5*I + .866*QLead = .5*I + .866*Q

•• Crossovers of Crossovers of ““II”” and and ““LeadLead”” are the trading are the trading signalssignals

Page 17: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

17

John EhlersJohn EhlersBandPass System PerformanceBandPass System Performance

•• Net Profit:Net Profit: $40,037$40,037•• # Trades:# Trades: 133 (about one trade every 1.75 weeks)133 (about one trade every 1.75 weeks)•• % Profitable:% Profitable: 59.4%59.4%•• Profit Factor:Profit Factor: 1.841.84•• Trade Drawdown:Trade Drawdown: ($3,550)($3,550)

Page 18: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

18

John EhlersJohn EhlersProbability Distribution Varies with DetrendingProbability Distribution Varies with Detrending

•• Channel Limited Channel Limited detrendingdetrending generally yields generally yields PDFsPDFssimilar to the PDF of a Sine Wavesimilar to the PDF of a Sine Wave

•• Two more detrending approaches will be described Two more detrending approaches will be described where that is not necessarily truewhere that is not necessarily true

–– HighPassHighPass FilteringFiltering–– RSI RSI

Page 19: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

19

John EhlersJohn EhlersHighpass Filter PDF Generator CodeHighpass Filter PDF Generator Code

Inputs:HPPeriod(40);

Vars:alpha(0), HP(0), HH(0), LL(0), Count(0), Psn(0), I(0);

Arrays:Bin[100](0);

alpha = (1 - Sine (360 / HPPeriod)) / Cosine(360 / HPPeriod);HP = .5*(1 + alpha)*(Close - Close[1]) + alpha*HP[1];IF CurrentBar = 1 THEN HP = 0;If CurrentBar > HPPeriod Then Begin

HH = HP;LL = HP;For Count = 0 to HPPeriod -1 Begin

If HP[Count] > HH Then HH = HP[Count];If HP[Count] < LL Then LL = HP[Count];

End;If HH <> LL Then Value1 = 100*(HP - LL) / (HH - LL);Psn = (Value1 + 2*Value1[1] + Value1[2]) / 4;

For I = 1 to 100 BeginIf Psn > I - 1 and Psn <= I Then Bin[I] = Bin[I] + 1;

End;Plot1(Psn);

End;If LastBarOnChart Then Begin

For I = 1 to 99 BeginPrint(File("C:\TSGrowth\PDF_HP.CSV"), I, ",", Bin[I]);

End;End;

Page 20: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

20

John EhlersJohn EhlersHP Filtered PDF for Treasury BondsHP Filtered PDF for Treasury Bonds

40 Bar Cutoff over 30 Years

PDFs produced by filtering have nearly uniform probability

Page 21: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

21

John EhlersJohn EhlersMyRSI PDF Generator CodeMyRSI PDF Generator Code

Inputs:Length(10);

Vars:CU(0), CD(0), I(0), MyRSI(0), Psn(0);

Arrays:Bin[100](0),PDF[100](0);

If CurrentBar > Length Then BeginCU = 0;CD = 0;For I = 0 to Length -1 Begin

If Close[I] - Close[I + 1] > 0 Then CU = CU + Close[I] - Close[I + 1];If Close[I] - Close[I + 1] < 0 Then CD = CD + Close[I + 1] - Close[I];

End;If CU + CD <> 0 Then MyRSI = 50*((CU - CD) / (CU + CD) + 1);Psn = (MyRSI + 2*MyRSI[1] + MyRSI[2]) / 4;For I = 1 to 100 Begin

If Psn > I - 1 and Psn <= I Then Bin[I] = Bin[I] + 1;End;

End;If LastBarOnChart Then Begin

For I = 1 to 99 BeginPrint(File("C:\TSGrowth\PDF_RSI.CSV"), I, ",", PDF[I]);

End;End;

Page 22: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

22

John EhlersJohn EhlersMyRSI PDF for Treasury BondsMyRSI PDF for Treasury Bonds

10 Bar RSI over 30 Years

RSI Detrending yields PDFs that appear Gaussian-Like

Page 23: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

23

John EhlersJohn EhlersRSI PDF Suggests a Trading StrategyRSI PDF Suggests a Trading Strategy

•• The RSI PDF appears to be GaussianThe RSI PDF appears to be Gaussian--LikeLike•• Probability of events at the amplitude Probability of events at the amplitude

extremes are very lowextremes are very low•• Strategy is based on the higher probability of Strategy is based on the higher probability of

prices reversing prices reversing –– Sell Short when prices cross over some upper Sell Short when prices cross over some upper

thresholdthreshold–– Buy when prices cross under some lower Buy when prices cross under some lower

thresholdthreshold

Page 24: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

24

John EhlersJohn EhlersRSI StrategyRSI Strategy

•• Compute RSICompute RSI•• Buy when RSI crosses below 20%Buy when RSI crosses below 20%•• Sell when RSI crosses above 80%Sell when RSI crosses above 80%

Page 25: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

25

John EhlersJohn Ehlers

Fisher TransformFisher TransformA PDF of virtually any processed data can be A PDF of virtually any processed data can be converted to a Normal PDF using the Fisher converted to a Normal PDF using the Fisher TransformTransform

Page 26: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

26

John EhlersJohn EhlersFisher TransformFisher Transform

A Fisher Transform has no lag A Fisher Transform has no lag –– it expands range near the endpointsit expands range near the endpoints

xxy

11ln*5.0

Page 27: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

27

John EhlersJohn EhlersFisherized PDF for Treasury BondsFisherized PDF for Treasury Bonds

Fisherized Detrended Signal Over 30 Years

The Fisher Transform enables the use of the same kind of strategy as beforeWhere we reverse position when extreme amplitude thresholds are exceeded

Page 28: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

28

John EhlersJohn EhlersFisher Transform SystemFisher Transform System

•• HighpassHighpass Filter pricesFilter prices•• Normalize between Normalize between --.999 and +.999 using a .999 and +.999 using a

StochasticStochastic--like approachlike approach•• Buy when transformed prices cross below an Buy when transformed prices cross below an

optimizableoptimizable lower boundlower bound•• Sell when transformed prices cross above an Sell when transformed prices cross above an

optimizableoptimizable lower bound lower bound

Page 29: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

29

John EhlersJohn Ehlers

TRADING SYSTEM RESULTSTRADING SYSTEM RESULTS

Page 30: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

30

John EhlersJohn EhlersRSI Trading System ResultsRSI Trading System Results

•• @SP.P for the life of the contract (from April 1982)@SP.P for the life of the contract (from April 1982)•• 576 Trades (about once every two weeks)576 Trades (about once every two weeks)•• 68.6% Profitable Trades68.6% Profitable Trades•• Profit Factor = 1.62Profit Factor = 1.62

The strategy is robust across the entire life of the contract!

Page 31: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

31

John EhlersJohn EhlersRSI Trading System Results (2)RSI Trading System Results (2)

•• @US.P for last 10 [email protected] for last 10 years•• 196 Trades (about once every two and a half weeks)196 Trades (about once every two and a half weeks)•• 63.8% Profitable Trades63.8% Profitable Trades•• Profit Factor = 1.60Profit Factor = 1.60

The strategy is robust for the last ten years!

Page 32: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

32

John EhlersJohn EhlersFisher Transform System ResultsFisher Transform System Results

•• @SP.P for the life of the contract (from April 1982)@SP.P for the life of the contract (from April 1982)•• 802 Trades (a little more than once every two weeks)802 Trades (a little more than once every two weeks)•• 65.2% Profitable Trades65.2% Profitable Trades•• Profit Factor = 1.53Profit Factor = 1.53

The strategy is robust across the entire life of the contract!

Page 33: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

33

John EhlersJohn EhlersTRADING STRATEGY COMMENTSTRADING STRATEGY COMMENTS

•• The concepts are provided for educational purposes The concepts are provided for educational purposes onlyonly

•• There was no allowance for slippage and commissionThere was no allowance for slippage and commission•• Results were shown using inResults were shown using in--sample optimizationsample optimization•• No stops or disaster reversals were usedNo stops or disaster reversals were used•• The strategies are not adaptive to current market The strategies are not adaptive to current market

conditionsconditions•• Commercial versions of these strategies are available Commercial versions of these strategies are available

at at www.eminiz.comwww.eminiz.com–– AdaptiveAdaptive–– Out of Sample strategy selection (no optimization)Out of Sample strategy selection (no optimization)–– With stopsWith stops

Page 34: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

34

John EhlersJohn Ehlerswww.eminiz.comwww.eminiz.com HOMEHOME

Page 35: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

35

John EhlersJohn Ehlerswww.eminiz.comwww.eminiz.com Corona ChartsCorona Charts

Page 36: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

36

John EhlersJohn Ehlerswww.eminiz.comwww.eminiz.com Equity GrowthEquity Growth

Page 37: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

37

John EhlersJohn Ehlerswww.eminiz.comwww.eminiz.com TradesTrades

Page 38: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

38

John EhlersJohn Ehlerswww.eminiz.comwww.eminiz.com Trades ListTrades List

Page 39: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

39

John EhlersJohn Ehlerswww.eminiz.comwww.eminiz.com Trades at a GlanceTrades at a Glance

Page 40: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

40

John EhlersJohn Ehlerswww.eminiz.comwww.eminiz.com Monte Carlo ProfitMonte Carlo Profit

Page 41: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

41

John EhlersJohn Ehlerswww.eminiz.comwww.eminiz.com Monte Carlo DrawdownMonte Carlo Drawdown

Page 42: ANTICIPATING TURNING POINTS · 3 John Ehlers Normal (Gaussian) Probability Distribution Function (PDF) is Commonly Assumed for Market Data 0 0.05 0.1 0.15 0.2 0.25 0.3-3 -2.8 -2.6

42

John EhlersJohn EhlersHow Is How Is www.eminiz.comwww.eminiz.com Different?Different?

•• Unique Dashboard Indicators can be checked daily (FREE)Unique Dashboard Indicators can be checked daily (FREE)•• Unique CyclesUnique Cycles--Based Dashboard Indicator Histories can be Based Dashboard Indicator Histories can be

reviewed as corona chart indicators (FREE)reviewed as corona chart indicators (FREE)•• Explicit Buy/Sell Signals are given for Five Index FuturesExplicit Buy/Sell Signals are given for Five Index Futures

–– Equity Growth Charts and Trading Statistics (delayed)Equity Growth Charts and Trading Statistics (delayed)–– Monte Carlo Analysis (delayed)Monte Carlo Analysis (delayed)–– Price Charts with trade history overlaid (delayed)Price Charts with trade history overlaid (delayed)–– TradeTrade--byby--Trade results (delayed)Trade results (delayed)–– Email notification for trades to be made on the next openEmail notification for trades to be made on the next open

•• Eight Different Robust Strategies were developed using the Eight Different Robust Strategies were developed using the techniques I have describedtechniques I have described–– Developed on the S&P Futures contract back to its beginningDeveloped on the S&P Futures contract back to its beginning–– Strategies are not optimizedStrategies are not optimized

•• Strategy selection is based on best OutStrategy selection is based on best Out--ofof--Sample Sample performance performance

•• Selection is made dynamically on a tradeSelection is made dynamically on a trade--byby--trade basistrade basis