EMA 5 13 62 Strategy

 

Anyone familiar with Rob Bookers EMA 5 13 62 Strategy...

Has anyone try to make it into an EA...

I am not a programmer

 

Cosmic Kharma

Here you go buddy,

Knock yourself out.

I haven't look at this since august 2005

so its pretty much "as is"

You ever heard of the 'bunny girl cross' ??

Files:
 
Roguewave:
Here you go buddy,

Knock yourself out.

I haven't look at this since august 2005

so its pretty much "as is"

You ever heard of the 'bunny girl cross' ??

how is your results of foward test of this ea?

 

i use those ma levels long time,not so bad but need to combine with hogher TF to get in trend

 

Roguewave

Could you please let me know what Time frame you use this EA .

Also why use macd ? how it work?

how about SL ?

let me know the best setting for this ea .

Thanks

 

5 13 62

Oh, Last time I talked to Rob, we were using some MACD stuff..

I have about ten different versions, why dont you tell me

which you want :

the 5 EMA crosses the 13 and the 62??

the 5 EMA and the 13 EMA crosses the 62??

I will let you specify the periods (5,13,26) and the time frame as a parameter under "inputs". Lets just call them FAST (5), MEDIUM(13) and SLOW(62).

You can also specify EMA, LWMA, etc.

So you want the Fast to cross the Slow or the Medium to cross the Slow?

I have written so many Crosses I think I can do them sleeping.

To answer your questions about periods, I think it depends how long you want to trade; if you want to hold something for weeks, use a daily or 4 hour; if you want to be a day trader look at something faster.

You can also mix time frames and you can look at other supporting indicators.

To answer your other other question, its the trailing stop setting.

Finally remember that all indicators are LAGGING indicators that can only display what has occurred in the past; be sure and know your fundamentals before you crawl into bed with an indicator. Read the reports, Google News under "dollar pound euro" and you can even use the Commitment of Traders report. Learn retracements, fibo levels, channels etc. A good trade is never one indicator.

 

i use those levels mostly as suport-resistance and ema34 also

i never use it as entry signal based on crossover

 
Roguewave:
Here you go buddy,

Knock yourself out.

I haven't look at this since august 2005

so its pretty much "as is"

You ever heard of the 'bunny girl cross' ??

This EA looks like it has some major potential... I am using and also applying some of Rob's rules for market timing... Expect some Statements for July

Thanks

 

5 13 62 Cross

I looked at this code I posted (afterwards haha) and the Macd stuff

is commented out so its not going to interfere with your testing.

Currently it is looking for a cross of 5 EMA to 26 EMA.

Change this:

extern double MA5=5;

extern double MA26=26;

to this:

extern double MA5=5;

extern double MA26=13;

(Hit the compile button, do'uh!)

If you want to test the 5 crossing the thirteen.

change this:

extern double MA5=5;

extern double MA26=26;

to this :

extern double MA5=13;

extern double MA26=62;

if you want to test the 13 crossing the 62.

Cosmic Kharma and all that..

 

Not into editing MQ4 code?

Oh you can also override the same input parameters at run time.

I just change the code and compile so I don't trade pre-coffee and forget..

 
Roguewave:
I looked at this code I posted (afterwards haha) and the Macd stuff

is commented out so its not going to interfere with your testing.

Currently it is looking for a cross of 5 EMA to 26 EMA.

Change this:

extern double MA5=5;

extern double MA26=26;

to this:

extern double MA5=5;

extern double MA26=13;

(Hit the compile button, do'uh!)

If you want to test the 5 crossing the thirteen.

change this:

extern double MA5=5;

extern double MA26=26;

to this :

extern double MA5=13;

extern double MA26=62;

if you want to test the 13 crossing the 62.

Cosmic Kharma and all that..

I am ahead of you Rogue...thanks for the update though

Reason: