In case there is a HUGE crash tomorrow, you know where to buy the dip 
Plots the ratio between the VIX3m and the VIX to show potential entry points (.8 - .9).
thinkScript Code
Code:
# VIX3M/VIX Ratio
# Assembled by BenTen at useThinkScript.com
# Converted from https://www.tradingview.com/script/klHaJXYn-VIX3M-VIX-Ratio/
declare lower;
def U = close("VIX3M");
def D = close("VIX");
def UDL = U / D;
plot ratio = UDL;
plot l1 = 0.8;
plot l2 = 0.9;
l1.SetDefaultColor(GetColor(1));
l2.SetDefaultColor(GetColor(0));
Attachments
Last edited: