Impulse of Dr Elder

 

Hello,

Does anyone have this indicator?

bye

felix

 

I use the Impulse system in QuoteTracker and have had great results with it. I found the code for esignal here and pasted it below. Anyone able to translate the code into MT4 for us novices? Thanks

var myStudy1=null;

var myStudy2=null;

var myStudy3=null;

function preMain() {

setStudyTitle("Impulse Indicator");

setCursorLabelName("Impulse", 0);

setCursorLabelName("MACDHist",1);

setPriceStudy(true); }

function main() {

var myStudy1 = ema(13);

var myStudy2 = new macdHist(12,26,9);

var myStudy3 = ema(13);

//Impulse Up

if ((myStudy1.getValue(0) > myStudy1.getValue(-1)) && (myStudy2.getValue(0) > myStudy2.getValue(-1))) {

setPriceBarColor(Color.green);

}

//Impulse Down

else if ((myStudy1.getValue(0) < myStudy1.getValue(-1)) && (myStudy2.getValue(0) < myStudy2.getValue(-1)) ) {

setPriceBarColor(Color.red);

}

//Neutral

else {

setPriceBarColor(Color.blue);

}

}

 

FX Money Map

Has anyone used FX Money Map and how has it performed ?

Easy to use ?

Consistant results ?

Considering a 3 month lease but wanted to hear from others using the software.

Thanks

Wesman

 

MACD Elder impulse max indicator macd_elder_impulse_max.mq4

 

"Impulse of Dr. Elder"...such a dirty old man...

 
Pava:
"Impulse of Dr. Elder"...such a dirty old man...

Seems he knew how to trade

 

The interesting is that he actually was a medical doctor (psychiatrist) before starting to trade - which could tell us a lot about traders

 

Elder impulse EI

elder_impulse_ei.mq4

 

Elders binary system (indicators + template)

elderbinarysystem.rar

Files:
ebs_2.gif  106 kb
ebs_1.gif  140 kb
 

new Elder indicator

new_elder.mq4

Files:
new_elder.mq4  5 kb
 

Mladen ,Is it possible to update this indi with all the average modes?

Thanks in advance.

Reason: