Page 1 of 2

D oscillator

PostPosted: Sun Mar 06, 2011 11:19 pm
by Alexander.Gettinger
Oscillator based on two indicators: RSI and CCI.

Formulas:
Line1[i]=2/(Smooth+1)*StCCI+(1-2/(Smooth+1))*Line1[i-1],
Line2[i]=2/(Smooth*0.8+1)*Line1[i-1]+(1-2/(Smooth*0.8+1))*Line2[i-1], where
StCCI=[CCI_Coeff]*CCI[i]+(1-[CCI_Coeff])*StRSI,
StRSI=(RSI[i]-MinRSI)*200/(MaxRSI-MinRSI)-100,
MaxRSI, MinRSI is a maximum and minimum of RSI from [i-D_Period] to [i].

D_Oscillator.png


Download:
D_Oscillator.lua
(2.58 KiB) Downloaded 1512 times


Indicator based strategy
viewtopic.php?f=31&t=68918

Re: D oscillator

PostPosted: Sun Mar 06, 2011 11:23 pm
by Alexander.Gettinger
Strategy based on this oscillator: viewtopic.php?f=31&t=3609

Re: D oscillator

PostPosted: Thu Jun 02, 2011 8:05 am
by Hybrid
Hi,

Could you please make a bigger time frame version? It will be very useful.

Thank you.

Re: D oscillator

PostPosted: Thu Jun 02, 2011 6:07 pm
by Apprentice
Your request has been added to developmental cue.

Re: D oscillator

PostPosted: Fri Jun 03, 2011 3:12 am
by Apprentice
Biger Time Frame D Oscillator
BF_D oscillator.png

BF_D oscillator.lua
(7.25 KiB) Downloaded 1184 times


You need to install D_Oscillator.lua from Top Most post.

Re: D oscillator

PostPosted: Sat Jun 11, 2011 1:00 pm
by Hybrid
Thank you very much, Apprentice! :D

Re: D oscillator

PostPosted: Fri Jun 29, 2012 1:28 pm
by Alexander.Gettinger
MQL4 version of this oscillator: viewtopic.php?f=38&t=20672

Re: D oscillator

PostPosted: Mon May 18, 2015 4:40 pm
by sho-me-pips
Image

Could arrows be added for a visual of direction of lines.

Re: D oscillator

PostPosted: Tue May 19, 2015 4:07 am
by Apprentice
Arrow.png

Show Arrows Option Added.

Re: D oscillator

PostPosted: Tue May 19, 2015 8:11 am
by sho-me-pips
Perfect, as always!!