NB: I originally wrote this on February 27, 2020 so there is commentary surrounding that date. It was done on the quick for curiosity. I will update it by recompiling it with new data and will update the commentary noting when it took place.
Chicago Board Of Exchange (CBOE) makes data available regularly. To judge the currency of the data, I have tailed it below after converting the dates to a valid date format.
The data was straightforward to get a hold of. Now let me plot it. I want to do this with a candlestick plot – a way of displaying intra-day volatility. There’s so much data that the views aren’t great.
library(plotly)# create the candlestick plotfig <- VIX %>%plot_ly(x =~Dates, type="candlestick",open =~OPEN, close =~CLOSE,high =~HIGH, low =~LOW) fig <- fig %>%layout(title ="A Historical Look at VIX")fig
As an overall it has been worse, but keep in mind, that big blip happened TODAY! What does it look like in perspective [keeping in mind that the futures are currently just under 40] since 2012?
fig2 <- VIX %>%filter(Dates >as.Date("01/01/2012", format ="%m/%d/%Y")) %>%plot_ly(x =~Dates, type="candlestick",open =~OPEN, close =~CLOSE,high =~HIGH, low =~LOW) fig2 <- fig2 %>%layout(title ="VIX Since 2012")fig2
Day to Day Changes?
I will touch the file about daily to track the evolution.
NB: This commentary was in mid-March. This doesn’t look good. The smooth on a small span is uncomfortably headed upward and today will shock it like no previous day in a very long while.