MQL4 - automated forex trading   /  

Forum

I AM CONFUSED ...I NEED A SOLUTION

Back to topics list To post a new topic, please log in or register

avatar
9
gbemi4all 2007.06.20 15:25 

Thank for your contribution so far...........it is highly appreciated.

I will like you to give me the syntax and the format of writing this code:

if LOW and HIGH >13 EMA PERIOD

If close-open on bar 1

if close-open on bar 2

if close-open on bar 3

then, (close-open on ba1)+(close-open on bar 2)+(close-open on bar 3) >=0.0015

Check for the position(BUY) Posibility and (SELL)Posibility.

OPTION :Using any extanl variable of your kind and ticketorder,

HOPE TO RECEIVED YOUR RESPOND SOON.

article

Interview with Drazen Ziskovic (draz)

There’s no doubt that weak money-management can be your worst enemy when trading.


avatar
124
Heino 2007.06.20 16:39 
double bar1,bar2,bar3;
 
for(int i = 0; i < 10; i++){
 
bar1=MathAbs(Close[i+1]-Open[i+1]);
bar2=MathAbs(Close[i+2-Open[i+2]);
bar3=MathAbs(Close[i+3]-Open[i+3]);
reslut=MathAbs(bar1+bar2+bar3);
 
	if(result>=Point*15){
	Now check what you want ;-), its a easy solution not the only once, 
        and the money for code you can send me now by post :-) ;-) joke.
	}
}

avatar
41
kouzin6 2007.06.24 19:18 
gbemi4all wrote:

Thank for your contribution so far...........it is highly appreciated.

I will like you to give me the syntax and the format of writing this code:

if LOW and HIGH >13 EMA PERIOD

If close-open on bar 1

if close-open on bar 2

if close-open on bar 3

then, (close-open on ba1)+(close-open on bar 2)+(close-open on bar 3) >=0.0015

Check for the position(BUY) Posibility and (SELL)Posibility.

OPTION :Using any extanl variable of your kind and ticketorder,

HOPE TO RECEIVED YOUR RESPOND SOON.

Hello brother !

I'd like to help you but I can't cause I know nothing in that laguage.

so good luck
Back to topics list  

To add comments, please log in or register