• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

is there a method to forecast vix jumps?

Joined
3/14/08
Messages
4
Points
13
I am working on a project on VIX and VXX. It seems VXX is going down most of the time, except some spikes when the current VIX has a spike.

I looked at some literature and know the spikes (big jumps) of VIX follows a poisson process. Is there a method (time series or other) that I can use to forecast the timing of future VIX jumps?
 
If it's a poisson process then by definition you can't predict.

So the first part of your project would be to find out if they really are poisson, and I'd be looking at a power spectrum analysis of the size of jumps, and your filtering should be adaptive on what delta corresponds to a "jump" and what is a "normal movement".

It would be interesting to model the interval between gaps and their interval.
 
Back
Top