Help Needed
  #1 (permalink)  
Old 09-02-2008, 10:57 AM
forexflash's Avatar
Senior
 
Join Date: Jun 2008
Posts: 204
Thanks: 20
Thanked 30 Times in 21 Posts
forexflash is on a distinguished road
Exclamation Help Needed

My EA have 4 orders.

Ticket 1 and ticket_2 are executed at current price,
and ticket_3 is pending order 50 pips under the current price.

and then if ticket_3 is triggered by price I want to add a ticket_4.

Please can somebody code this logics.....
if ticket_3 is opened then open tiket_4

Thanks

Last edited by forexflash : 09-02-2008 at 11:28 AM.
Reply With Quote
  #2 (permalink)  
Old 09-03-2008, 07:55 AM
Forex Warrior
 
Join Date: Feb 2007
Posts: 261
Thanks: 9
Thanked 18 Times in 15 Posts
FerruFx is on a distinguished road
Default

Quote:
Originally Posted by forexflash View Post
My EA have 4 orders.

Ticket 1 and ticket_2 are executed at current price,
and ticket_3 is pending order 50 pips under the current price.

and then if ticket_3 is triggered by price I want to add a ticket_4.

Please can somebody code this logics.....
if ticket_3 is opened then open tiket_4

Thanks
The idea is to check in the trade terminal if you have a pending order. If not (the previous was triggered), jump in OrderSend(); function to open a new pending:

Quote:
int CountStopLongs()
{
int count=0;
int trade;
int trades=OrdersTotal();
for(trade=0;trade<trades;trade++) {
OrderSelect(trade,SELECT_BY_POS,MODE_TRADES);
if(OrderSymbol()!=Symbol() || OrderMagicNumber() != MagicNumber) continue;
if(OrderType()==OP_BUYSTOP) count++;
} //---- for
return(count);
}

int CountStopShorts()
{
int count=0;
int trade;
int trades=OrdersTotal();
for(trade=0;trade<trades;trade++) {
OrderSelect(trade,SELECT_BY_POS,MODE_TRADES);
if(OrderSymbol()!=Symbol() || OrderMagicNumber() != MagicNumber) continue;
if(OrderType()==OP_SELLSTOP) count++;
} //---- for
return(count);
}

int start()
{

if(CountStopShorts() + CountStopLongs() == 0) OrderSend(.......);

}
It is just the idea. You can code it as per your style.

Hope that helps,

FerruFx
__________________
THE HEART of FOREX & THE PROBABILITY METER - Trade with 100% confidence and ... Stress Less!!! More info here
Coding services: Experts Advisors, indicators, alerts, etc ...

NEW: TripleXXX Expert Advisor
developed by Spiritfriends and coded by FerruFx ... more info
Reply With Quote
The following users have thanked FerruFx for useful post above:
  #3 (permalink)  
Old 09-03-2008, 07:58 AM
forexflash's Avatar
Senior
 
Join Date: Jun 2008
Posts: 204
Thanks: 20
Thanked 30 Times in 21 Posts
forexflash is on a distinguished road
Thumbs up

Thanks!!!
You are the man!

Last edited by forexflash : 09-03-2008 at 11:13 AM.
Reply With Quote
  #4 (permalink)  
Old 09-04-2008, 01:15 AM
Forex Warrior
 
Join Date: Feb 2007
Posts: 261
Thanks: 9
Thanked 18 Times in 15 Posts
FerruFx is on a distinguished road
Default

Quote:
Originally Posted by forexflash View Post
Thanks!!!
You are the man!
You're welcome.

FerruFx
__________________
THE HEART of FOREX & THE PROBABILITY METER - Trade with 100% confidence and ... Stress Less!!! More info here
Coding services: Experts Advisors, indicators, alerts, etc ...

NEW: TripleXXX Expert Advisor
developed by Spiritfriends and coded by FerruFx ... more info
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help needed forexflash MetaTrader and ZeroCode 1 06-29-2008 12:06 AM
EA needed renasdad MetaTrader and ZeroCode 8 03-22-2007 11:01 PM
EA Help Needed angeleye9 System Coding 0 03-03-2007 02:31 PM
Help Needed bubble MetaTrader and ZeroCode 3 09-29-2005 04:44 PM
Some help needed. Ravique Chit Chat 5 10-06-2004 04:27 AM


All times are GMT. The time now is 06:43 AM.
Powered by vBulletin Version 3.6.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0

Registered members have access to special online forex currency trading tools, software, mt4 expert advisors and indicators. Register now

Main Menu

Economic Forecast