OptionTrader 3
DonSchuman
Posted 5/8/2015 8:14 PM (#6216)
Subject: OptionTrader 3



Veteran

Posts: 212
100100
Location:
USA: TX, Mansfield
Has anyone seen the OptionTrader 3 webinars that Ed D is doing?

I am watching the 1st one and wondering if anyone has coded the scan and indicators he is using?

Don
Top of the page Bottom of the page
DonSchuman
Posted 5/8/2015 9:32 PM (#6217 - in reply to #6216)
Subject: OptionTrader 3



Veteran

Posts: 212
100100
Location:
USA: TX, Mansfield
I'm attempting to code the momentum indicator he has on his chart.

This is what I have so far:

#Indicator

Dim fAvg as Single
Dim fZMA as Single
Dim fZMA2 as Single

fAvg = AVG(V,10) > 1000000
fZMA = ZMA(RelMom(30,"SPY"),14) > 0
fZMA2 = ZMA(RelMom(30,"SPY"),14) > ZMA(ZMA(RelMom(30,"SPY"),14), 7)

Plot("fZMA", fZMA)
Plot("fZMA2", fZMA2)

It is not working. Any ideas?

Don
Top of the page Bottom of the page
DonSchuman
Posted 5/8/2015 9:34 PM (#6218 - in reply to #6216)
Subject: OptionTrader 3



Veteran

Posts: 212
100100
Location:
USA: TX, Mansfield
Okay, I think I figured it out:

#Indicator

Dim fAvg as Single
Dim fZMA as Single
Dim fZMA2 as Single

fAvg = AVG(V,10) > 1000000
fZMA = ZMA(RelMom(30,"SPY"),14)
fZMA2 = ZMA(ZMA(RelMom(30,"SPY"),14), 7)

Plot("fZMA", fZMA)
Plot("fZMA2", fZMA2)
Top of the page Bottom of the page
DonSchuman
Posted 5/8/2015 11:14 PM (#6219 - in reply to #6216)
Subject: OptionTrader 3



Veteran

Posts: 212
100100
Location:
USA: TX, Mansfield
I believe the above represents the indicator, but I have had no luck with the scan.

Don
Top of the page Bottom of the page
JimDean
Posted 5/9/2015 6:33 AM (#6220 - in reply to #6219)
Subject: OptionTrader 3



Owner/Admin

Posts: 3925
2000100050010010010010025
Location:
USA: GA, Lawrenceville
I suspect that Ed will provide that info.
Top of the page Bottom of the page