| 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 | Thread Tools | Display Modes |
|
|||
|
Trade only certain times of day?
I have an EA that I want to trade only certain times of day. The EA is designed to trade only between 18 and 23 GMT and 0 to 9 GMT, but I can't seem to get it working correctly. I can get it trade between 18 and 23, but it won't generate any trades between 0 and 9. Here is part of the code:
------------------------------ if (UseHourTrade) { if (!(Hour() >= StartHour1 && Hour() <= EndHour1) && !(Hour() >= StartHour2 && Hour() <= EndHour2)) { Comment("Non-Trading Hours!"); -------------------------------- Anyone know what the problem could be? Your help would be greatly appreciated. |
|
|||
|
Quote:
double Trade=0; (before int start) then if((Hour()>=StartHour1&&Hour()<=EndHour1)||(Hour() >=StartHour2&&Hour()<=EndHour2)){ Comment("Let's Trade!) Trade=1; (for example, and you put where the ea enter a trade, to enter only if Trade>0) } else { Comment("Non-Trading Hours!"); Trade=0; } Maybe like this it work, i think. Bye ![]() |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Best Trading Times | 67-17454 | General Discussion | 17 | 11-23-2006 07:58 PM |
| Changing Times | Pervaz | General Discussion | 3 | 08-29-2006 10:03 PM |
| Metatrader times | guybraun | Metatrader 4 | 2 | 02-15-2006 01:53 PM |
| Trading Times | dennisros | General Discussion | 3 | 02-13-2006 11:42 AM |
| Trade Times | caldolegare | General Discussion | 7 | 11-15-2005 01:07 PM |