|
|||||||
| 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 | Thread Tools | Display Modes |
|
|||
|
Hi
I want to do the following in code 'Don't trade for 30 minutes since my last trade' So if my indicators indicate that I should add to my current trade again then I place trade in the same direction only if 30minutes have past I am doing the following - this code does work yet - it is just in design phase - I don't know how to add 30 minutes to my last order This is for an EA only working on the current pair int start() { int cnt, ticket, total, stop1; static datetime lasttime total=OrdersTotal(); for(cnt=0;cnt<total;cnt++) { OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES); //Determine the time of the last OrderClose if (OrderCloseTime > lasttime + 30) { lasttime = orderclosetime }//if (OrderCloseTime) } Now I want to say if (Curtime() > lasttime + 30 minutes) { Contiue trading } pls help |
|
|||
|
Basic question ...
Hi,
I'm new with MetaTrader and have a basic question: I want to limit the open positions in my expert-advisor to only 1 position at a time - but I want that limitation per symbol, so if I'll run another expert-advisor on another symbol, It will open a new position on that symbol. In another words, I want to be able to open 1 positions for all the symbols, but not more than 1 position for a symbol (And I'm talking about many expert-advisor on many symbols...) How can I do It ? I saw the "totaltrades" function, but from the documentation I understood that this function applys to the account and not for the current symbol, so "if totaltrades=1 then exit;" will cause to 1 position at a time for all the symbols... 10X ! |
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Basic Indicator Question | waaustin | Metatrader Programming | 8 | 04-02-2008 02:54 PM |
| MT4 (Basic) Questions | stepwise | Metatrader 4 | 2 | 05-21-2007 04:03 PM |
| Need Help Understanding Basic MQL logic | Emerald King | Expert Advisors - Metatrader 4 | 7 | 02-27-2007 09:59 AM |
| Very basic coding help needed | camisa | Questions | 1 | 05-08-2006 05:36 PM |