Price and Volatility Playbook
Price and Volatility Playbook
Results trade the volatility indices in the opposite direction from the stock indices.
-----Original Message-----
From: Larry Connors [mailto:l.connors@tradingmarkets.com]
Sent: Friday, May 06, 2005 9:32 AM
To: davidwei@ix.netcom.com
Subject: RE: Research Project
Great David, thanks. When you show the changes in price and Vix use raw numbers and also % change.
-----Original Message-----
From: David Weilmuenster [mailto:davidwei@ix.netcom.com]
Sent: Friday, May 06, 2005 9:18 AM
To: 'Larry Connors'
Cc: cesar@alvarez.com
Subject: RE: Research Project
David
-----Original Message-----
From: Larry Connors [mailto:l.connors@tradingmarkets.com]
Sent: Friday, May 06, 2005 9:05 AM
To: Larry Connors; davidwei@ix.netcom.com
Cc: cesar@alvarez.com
Subject: RE: Research Project
-----Original Message-----
From: Larry Connors [mailto:l.connors@tradingmarkets.com]
Sent: Friday, May 06, 2005 9:04 AM
To: davidwei@ix.netcom.com
Cc: cesar@alvarez.com
Subject: Research Project
Hi David,
We're going to now focus the research in order to support an Options Trading College which will be run by Joe Corona who wa
To start, can you create a spreasheet for us with the following parameters:
1. Behavior of the SPX (NDX) and the Vix (and VXO) when the VIX (VXO) is x %
(5%-25%) above (below) its 5 day ma, 10 day ma and 20 day ma. We'll look at 3
days, 5 days and 10 days and 20 days of behavior. We'll also look at
behavior until the Vix (VXO) closes on the other side of its x day ma (we'll look at x+1 day too as volatility tends to overshoot
Please call me today if you have any questions. Also, I'm in Palm Springs this weekend for a tournament so I won't have emai
Thanks,
Larry
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.5 - Release Date: 5/4/2005
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.5 - Release Date: 5/4/2005
--
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.5 - Release Date: 5/4/2005
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.5 - Release Date: 5/4/2005
un by Joe Corona who was Tony Saliba's head trader for a number of years. Our research role will be us simply looking at prices of securiti
ment so I won't have email beginning tomorrow morning, but I will be available by cell (310-592-0631).
ooking at prices of securities and the Vix, not options.
Symbol
SetOption("InitialEquity",100000);
SetOption("CommissionMode",1);
SetOption("CommissionAmount",0);
SetOption("MaxOpenPositions",1);
SetOption("MarginRequirement",100);
SetOption("UsePrevBarEquityForPosSizing",False);
SetOption("AllowPositionShrinking" , True);
SetOption("AllowSameBarExit",False);
SetTradeDelays(Exectiming,Exectiming,Exectiming,Exectiming);
BuyPrice = SellPrice = ShortPrice = CoverPrice = IIf(exectiming==0,C,O);
SetPositionSize(1,spsShares);
RoundLotSize = 1;
SetForeign("VIX--X");Vix = C;RestorePriceArrays();
SetForeign("VXN--X");Vxn = C;RestorePriceArrays();
Volatilityma = MA(Volindex,Volatilitymawnd);
Sell = IIf(stopmethod==1,False,
BarsSince(IIf(Name()=="SP-500" OR Name()=="NDX--X",Cross(volatilityma,Volindex),
IIf(Name()=="VIX--X" OR Name()=="VXN--X",Cross(Volindex,volatilityma),
False
)
)
)==Crossoverbars);
Cover = IIf(stopmethod==1,False,
BarsSince(IIf(Name()=="SP-500" OR Name()=="NDX--X",Cross(Volindex,volatilityma),
IIf(Name()=="VIX--X" OR Name()=="VXN--X",Cross(volatilityma,Volindex),
False
)
)
)==Crossoverbars);
ApplyStop(stopTypeNBar,IIf(stopmethod==1,stopModeBars,stopModeDisable),
IIf(timestop==1,3,IIf(timestop==2,5,IIf(timestop==3,10,IIf(timestop==4,20,0))))
);
Plot(Volindex,"Volatility Index",colorBlue,styleLine);
Plot(Volatilityma,"Volatility MA",colorRed,styleLine);
Plot((1+volatilitythresh/100)*Volatilityma,"Volatility Thresh",colorGreen,styleLine);
Filter=ExRem(Buy,Sell)-ExRem(Short,Cover)!=0;
AddColumn(Year(),"Year",5.0);
AddColumn(Month(),"Month",5.0);
AddColumn(ExRem(Buy,Sell)-ExRem(Short,Cover),"Buy/Short",5.2);
AddColumn(Volindex,"Volatility Index",5.2);
AddColumn(Vix,"VIX",5.2);
AddColumn(Vxn,"VXN",5.2);