Daily Breakout EA - page 4

 
stace:
primajaya

I will post DGC EA here you will see the mechanism his work.

Now ea opens only 1 lot and does not cuts there levels of TP. I think you did not understand me

please explain it clearer,

i'm waiting you post the DGC EA

Pj

 

What exactly in variables is edited?

Nice advertisement. Buy for only 55usd

This EA is free.

firedoji:
You can download the DGC EA with edited variable from the below link.. I get over 4000++ Indi and EA from there... All are edited and modified...

-----------------------------------------

Download All EA Download All Indicator
 
firedoji:
You can download the DGC EA with edited variable from the below link.. I get over 4000++ Indi and EA from there... All are edited and modified...

-----------------------------------------

Download All EA Download All Indicator

No thank's

never thought to buy it,

I only need to know the mechanism like stace said before.

 

Nice work!

real real real real nice work,primajaya!!!!!!!!

God bless you!!

 

My idea

Hi all

I am going to keep this short (then I know most people will read it)

I have been playing around with the bar Hilo EA.

I doubt that a simple break out strategy can and will be profitable in the long run.

The possible reward of such a system is so big that I am sure a lot of clever mathematicians are working on such an idea day and night.

BUT: If you add a filter for example. Only trade long when the daily 5 ema have crossed the 8 or the daily 5,3,3 stoch have crossed up then there seems to be some potential.

My results show some potensial but I need an EA with a TSL instead of just a normal take profit.

What do you think

Cheers

Jan

 

Manage TP EA

This may be useful..... Courtesy of stockwet

Zimmer

Files:
 

So this is the new version,

What we have here are: TP_Increament and Lot Devider

Test it, and you will know what I mean..

hope it's the same with your suggestions stace.., I'm waiting for your result and optimizations..

Pj

Files:
barhilo_4.mq4  8 kb
 

Thanks bro.

Well strange I though effectivity will be increased but the results seems not good than your old modification

Files:
 

Magic Number

Primajaya, the magic number setting does not seem to work. I have 4 diffrent charts with 100,200,300 and 400 as magic numbers but only 1 pair is working.

Any ideas...

 

I'm not sure if this code can help improve this EA.

I call the function Power Close.

The closing price of the previous bar must be within the XX% of the high/low

If its nearer to high, then buy else nearer to low then sell

//---- POWER CLOSE

bool PowerUP = false, PowerDN = false;

double PrevLow = iLow(NULL, 0, 1);

double PrevHigh = iHigh(NULL, 0, 1);

double PrevClose = iClose(NULL, 0, 1);

double PrevRange = PrevHigh - PrevLow;

if(PrevLow + (PrevRange * Power) >= PrevClose) PowerDN = true;

if(PrevHigh - (PrevRange * Power) <= PrevClose) PowerUP = true;

Power ranges from 0.1 - 1.0

Reason: