Lotusbuddha
Newbie
- Messages
- 2
- Likes
- 0
Hello Everybody,
I am glad to have found this forum, every single thread i have read so far is of high quality and had not been highjacked even after a dozen pages.
I decided to Trade for a living as new year's resolution and gave myself a year to find my feet and learn TA, the system i have decided to follow as of now is Dr Elder's Triple screen and Impulse system and am currently pouring over 2 years of spot gold charts, i will swing trading using spread betting platform as it lets me get into the game with only £3000 or even less. I started an account with IG and like the ProRealTime platform that comes with it (advanced charts), also use CMC for virtual trading.
As a newbie i have quite a bit to get sorted (trading plan, journal etc) and i could save time not having to learn programming no matter how simple, so thanks in advance with this.
I need help to program Dr Elder's impulse system into Pro RealTime as an indicator.
In a nutshell, the system gives buy and sell signals when:
(Buy Signal)Green Price Bar: (13-period EMA > previous 13-period EMA) and
(MACD-Histogram > previous period's MACD-Histogram)
(Short Signal)Red Price Bar: (13-period EMA < previous 13-period EMA) and
(MACD-Histogram < previous period's MACD-Histogram)
Price bars are colored blue when conditions for a Red Price Bar or
Green Price Bar are not met. The MACD-Histogram is based on MACD(12,26,9)
Also found the below link that has the code programmed for ProRealTime but it was in french!
Really appreciate if someone could confirm this in English.
http://sohocool.over-blog.com/article-36900190.html
{Variables
{Macd: pc = mean short - 12
long pl = average - 26
ps = average signal - 9
P = period exponential average - 13
PUTTING IT ALL IN HISTOGRAM}
exponentialaverage aa = [p] (close)
cc = MACD [pc, pl, ps] (close)
if aa> aa [1] and cc> CC [1] then
dd = 1
else
dd = 0
endif
if aa
if (aa return dd COLOURED (0,255,0) as "elder impulse", ee COLOURED (255,0,0) as "elder impulse", ff colored (0,0,255) as "elder impulse"
///// //////// End code
many many thanks
I am glad to have found this forum, every single thread i have read so far is of high quality and had not been highjacked even after a dozen pages.
I decided to Trade for a living as new year's resolution and gave myself a year to find my feet and learn TA, the system i have decided to follow as of now is Dr Elder's Triple screen and Impulse system and am currently pouring over 2 years of spot gold charts, i will swing trading using spread betting platform as it lets me get into the game with only £3000 or even less. I started an account with IG and like the ProRealTime platform that comes with it (advanced charts), also use CMC for virtual trading.
As a newbie i have quite a bit to get sorted (trading plan, journal etc) and i could save time not having to learn programming no matter how simple, so thanks in advance with this.
I need help to program Dr Elder's impulse system into Pro RealTime as an indicator.
In a nutshell, the system gives buy and sell signals when:
(Buy Signal)Green Price Bar: (13-period EMA > previous 13-period EMA) and
(MACD-Histogram > previous period's MACD-Histogram)
(Short Signal)Red Price Bar: (13-period EMA < previous 13-period EMA) and
(MACD-Histogram < previous period's MACD-Histogram)
Price bars are colored blue when conditions for a Red Price Bar or
Green Price Bar are not met. The MACD-Histogram is based on MACD(12,26,9)
Also found the below link that has the code programmed for ProRealTime but it was in french!
Really appreciate if someone could confirm this in English.
http://sohocool.over-blog.com/article-36900190.html
{Variables
{Macd: pc = mean short - 12
long pl = average - 26
ps = average signal - 9
P = period exponential average - 13
PUTTING IT ALL IN HISTOGRAM}
exponentialaverage aa = [p] (close)
cc = MACD [pc, pl, ps] (close)
if aa> aa [1] and cc> CC [1] then
dd = 1
else
dd = 0
endif
if aa
if (aa return dd COLOURED (0,255,0) as "elder impulse", ee COLOURED (255,0,0) as "elder impulse", ff colored (0,0,255) as "elder impulse"
///// //////// End code
many many thanks