| New signals service! | |
|
|||||||
| Register in Forex TSD! | |
|
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information |
|
![]() |
|
|
LinkBack (9) | Thread Tools | Display Modes |
|
|||
|
Tanks a lot
Quote:
Cross |
|
|||
|
search a simple ea/script that only buy/sell
hi
I need a script (or ea if have trailing stop support) that simply buy or sell with SL/TP already set. More good is if the script have a symbol detection and can set different sl/tp for more cross. thanks |
|
|||
|
Quote:
|
|
|||
|
quite good closing all function
int slippage=5;
void CloseAllOrders() { int Retry; while (OrdersTotal()>0) { for (int cnt=OrdersTotal()-1;cnt>=0;cnt--) { OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES); if (OrderType()==OP_BUY) { Retry=0; while (Retry<5 && !IsTradeAllowed()) { Retry++; Sleep(1000); } RefreshRates(); OrderClose(OrderTicket(),OrderLots(),Bid,slippage, Yellow); Sleep(1000); } else if (OrderType()==OP_SELL) { Retry=0; while (Retry<5 && !IsTradeAllowed()) { Retry++; Sleep(1000); } RefreshRates(); OrderClose(OrderTicket(),OrderLots(),Ask,slippage, Yellow); Sleep(1000); } else { Retry=0; while (Retry<5 && !IsTradeAllowed()) { Retry++; Sleep(1000); } OrderDelete(OrderTicket()); Sleep(1000); } } } } |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/tools-utilities/174-close-all-open-tools.html
|
||||
| Posted By | For | Type | Date | |
| Ind close sume post with one click? - Nogold.com | This thread | Refback | 08-08-2008 11:34 AM | |
| Close all trades with a push of a button? | This thread | Refback | 07-21-2008 03:38 PM | |
| Close all trades with a push of a button? | This thread | Refback | 07-21-2008 03:28 PM | |
| Close all trades !!! | This thread | Refback | 06-24-2008 03:13 AM | |
| Close all trades !!! | This thread | Refback | 06-19-2008 10:53 AM | |
| Close all trades !!! | This thread | Refback | 06-19-2008 09:33 AM | |
| Antara EA yang telah diLIVE test oleh MyMEFx Grup - Page 50 - Nogold.com | This thread | Refback | 12-05-2007 03:58 PM | |
| skrypty close i modify | This thread | Refback | 08-07-2007 04:11 AM | |
| Ind close sume post with one click? - Nogold.com | This thread | Refback | 06-30-2007 03:02 PM | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Open/close trade on same bar's close? | WNW | Expert Advisors - Metatrader 4 | 2 | 03-29-2007 05:37 AM |
| close all open trades ea | G-Riper | General Discussion | 2 | 08-02-2006 09:41 PM |
| Close all open positions | jonjonau | Expert Advisors - Metatrader 4 | 6 | 07-12-2006 05:01 AM |
| Close All Open Positions? | lonespruce | Metatrader 4 | 9 | 06-22-2006 07:20 AM |