Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@jehart
jehart / IV_Percentile
Created May 15, 2013 16:41
ThinkScript Custom Scan parameters
##IV Percentile
def vol = if(isnan(impVolatility()),0,impvolatility());
def hi = highest(vol,252);
def lo = lowest(vol,252);
plot perct = ((vol-lo)*100)/(hi-lo)>70;