IV and Implied Move Approximation Label

Chuck

Moderator
Staff member
Platform
  1. Thinkorswim
56KG2EU.png
Code:
# IV and Implied Move Approximation Label
# Mobius

def IV = if IsNaN(Imp_Volatility(period = AggregationPeriod.DAY))
         then IV[1]
         else Imp_Volatility(period = AggregationPeriod.DAY);
def ImpliedMove = (open * IV) / Sqrt(365);
AddLabel(1, "IV = " + AsPercent(IV) + "  Implied Move = " + AsDollars(ImpliedMove), color.white);
 
Top