@ Shay:
Here is a thinkscript for IV and IV percentile for TOS.
def vol = impVolatility();
def IV=vol*100;
def hi = highest(vol,252);
def lo = lowest(vol,252);
def perct = (vol - lo)*100 / (hi - lo);
AddLabel(1, Concat("52wk IV Percentile " + Round(perct, 2), " %"), Color.gray);
AddLabel(yes...