| / | Forum |
|
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. |
|
Interview with Drazen Ziskovic (draz) There’s no doubt that weak money-management can be your worst enemy when trading. |
|
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. } } |
|
kouzin6
2007.06.24 19:18
gbemi4all wrote: Hello brother !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. I'd like to help you but I can't cause I know nothing in that laguage. so good luck |