This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//+------------------------------------------------------------------+ | |
//| EAManager.mq4 | | |
//| APP Wargame-Hydra | | |
//| http://www.facebook.com/groups/moneywargame/ | | |
//+------------------------------------------------------------------+ | |
#property copyright "APP Wargame-Hydra" | |
#property link "http://www.facebook.com/groups/moneywargame/" | |
#property version "1.00" | |
#property strict | |
//+------------------------------------------------------------------+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//+------------------------------------------------------------------+ | |
//| ProjectName | | |
//| Copyright 2012, CompanyName | | |
//| http://www.companyname.net | | |
//+------------------------------------------------------------------+ | |
#property strict | |
#include <WarGameDLL.mqh> | |
#include <WinUser32.mqh> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "wininet.dll" | |
int InternetAttemptConnect( | |
int dwReserved=0 | |
); | |
int InternetOpenA(uchar &lpszAgent[],int dwAccessType,uchar &lpszProxyName[],uchar &lpszProxyBypass[],int dwFlags); | |
int InternetConnectA(int hInternetSession,uchar &lpszServerName[],int nServerPort,uchar &lpszUserName[],uchar &lpszPassword[],int nService,int nFlags,int dwContext); | |
bool InternetCloseHandle( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//+------------------------------------------------------------------+ | |
//| AllNewXBOMB.mq4 | | |
//| APP Wargame-Hydra | | |
//| http://www.facebook.com/groups/moneywargame/ | | |
//+------------------------------------------------------------------+ | |
#property strict | |
#include <WarGameDLL.mqh> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#property indicator_chart_window | |
#property indicator_buffers 4 | |
#property indicator_color1 LawnGreen | |
#property indicator_color2 LawnGreen | |
#property indicator_color3 OrangeRed | |
#property indicator_color4 RoyalBlue | |
extern color color1 = Red; | |
extern color color2 = SkyBlue; |