Kevin McKelvy Mentoring

Mentoring Session

Jan 11th –  Assignment For Kevin

  1. Review the newly posted webinar – Catching The Huge Options Trade – And Surfing Bathtub Waves Too.  See below.

Mentor Session #9 – Jan 11th, 2016 – 11 AM New York

Mentor Session #8 – Dec 28th, 2015 – 11 AM New York

Mentor Session #7 – Dec 21st, 2015 – 11 AM New York

Mentor Session #6 – Dec 14th, 2015 – 11 AM New York

Mentor Session #5 – Dec 10th, 2015 – 11 AM New York

Mentor Session #4 – Dec 7th, 2015 – 11 AM New York

Mentor Session #3 – Dec 3rd, 2015 – 11 AM New York

Mentor Session #2 – Nov 23rd, 2015 – 11 AM New York

Mentor Session #1 – Nov 16th, 2015 – 11 AM New York

Webinar – Catching A Big Options Trade, And Surfing Bathtub Waves Too Click Here

Webinar – Catching A Big Options Trade, And Surfing Bathtub Waves Too –

Precision Timing Your Options Using Fibonacci Webinar

Precision Timing Your Options Using Fibonacci Webinar – Click Here

Elliott Wave Label Table

Fib Percentages Excel File Download Label Table

Guide To Option Spreads

Guide To Option Spreads CLICK HERE

Advanced Elliott Corrections PowerPoint

Advanced Elliott Wave Corrections CLICK HERE

Fibonacci Ratios In Corrections CLICK HERE

Log Scale Fibonacci Calculator

P.A.R. Positioning Tool

Google Drive Link

TradingAnalysis Swing Wave Indicator

MotiveWave Instructions. Put the jar file in C:\Users\\MotiveWave Extensions and then start MotiveWave. You will find your Study under Study -> Todd Gordon.

IV percentile and ATR Indicators

Code to put in program

IV Percentile On Chart# beginning of code ———————- –

# IV% thinkscript code
# Display Implied Volatility Percentile as a label on a chart

declare upper ;

input length = 252 ; # bars to use in implied volatility calculation

# If IV data doesn’t exist for a particular period, set it to previous value so it won’t affect the hi/low
def ivClean = if IsNaN(imp_volatility()) then ivClean from 1 bar ago
else imp_volatility() ;

def ivHi = Highest(ivClean, length) ; # highest IV over range
def ivLo = Lowest(ivClean, length) ; # lowest IV over range

def ivRange = ivHi – ivLo ; # IV range from low to high

def ivp = Round( 100 * (imp_volatility() – ivLo) / ivRange, 1) ; # IV percentile

# Define a color level from 0 to 255 based on current IV%
def level = ivp * 2.55;
input brightness = 100 ; # overall brightness of IV display

# Check bounds and convert brightness input to an intensity factor between 0.2 and 1.0
def intensity = if brightness < 0 then 0.2 else if brightness > 100 then 1.0
else 0.2 + (brightness * 0.008) ;

# Calculate red and green color levels (modified by intensity) for the color function
def rLvl = intensity * (255 – level) ;
def gLvl = intensity * (level) ;
AddLabel(yes, “IV%: ” + ivp, CreateColor(rLvl, gLvl, 0)) ;

# end of code ——————————-