Page 1 of 2

Advanced Get Oscillator

PostPosted: Thu Mar 08, 2012 3:17 pm
by Alexander.Gettinger
This indicator is a ported MQL4 indicator from viewtopic.php?f=27&t=13908

Formulas:
Histogram=MVA(FastPeriod)-MVA(SlowPeriod),
if Histogram>=0: UpLine[i]=Histogram[i]*Coeff+UpLine[i-1]*(1-Coeff), DnLine[i]=DnLine[i-1],
if Histogram<0: UpLine[i]=UpLine[i-1], DnLine[i]=Histogram[i]*Coeff+DnLine[i-1]*(1-Coeff), where
Coeff=2/39.

Advanced_Get_Oscillator.PNG


Download:
Advanced_Get_Oscillator.lua
(2.69 KiB) Downloaded 1191 times


The indicator was revised and updated

Re: Advanced Get Oscillator

PostPosted: Fri Mar 23, 2012 11:54 pm
by briansummy
This would make a great MTF Strategy. Amazing work here!!!!

Re: Advanced Get Oscillator

PostPosted: Sun Mar 25, 2012 4:15 am
by Apprentice
Can you define the Entry, Exit conditions.

Re: Advanced Get Oscillator

PostPosted: Wed Apr 18, 2012 1:21 pm
by igariok_m
Hi can make it color like Awsome Oscilator

Re: Advanced Get Oscillator

PostPosted: Thu Apr 19, 2012 1:33 am
by Apprentice
Your request is added to the development list.

Re: Advanced Get Oscillator

PostPosted: Thu Apr 19, 2012 8:36 am
by Alexander.Gettinger
igariok_m wrote:Hi can make it color like Awsome Oscilator


See this version of oscillator.
AdvancedGetOscillator2.PNG


Download:
Advanced_Get_Oscillator2.lua
(2.99 KiB) Downloaded 925 times

Re: Advanced Get Oscillator

PostPosted: Thu Apr 19, 2012 3:15 pm
by igariok_m
Thanks a lot

Re: Advanced Get Oscillator

PostPosted: Thu Jul 19, 2012 2:59 pm
by igariok_m
Hi this version of "advanced get2" is using simple moving averages, can make it to use exponential moving average 5,35 close, and if can make this indicator to use with mt4 too

Re: Advanced Get Oscillator

PostPosted: Thu Jul 19, 2012 8:26 pm
by Alexander.Gettinger
igariok_m wrote:Hi this version of "advanced get2" is using simple moving averages, can make it to use exponential moving average 5,35 close, and if can make this indicator to use with mt4 too


OK. I will write it.

Re: Advanced Get Oscillator

PostPosted: Fri Jul 20, 2012 7:32 am
by superleo
hi,

can you add yellow low color in this indicator;


conditions are:

green: histogram > upper line
red: histogram< lower line
yellow: histogram inbetween upper and lower line