/* xMeterMTF.mq4 Copyright © 2007, MetaQuotes Software Corp. Price Meter System™ ©GPL Hartono Setiono 5/17/2007 Redsigned based on xMeter_mini.mq4 indicator */ #property copyright "x Meter System™ ©GPL" #property link "forex-tsd dot com" #include #include //#define PairCount 12 // number of pairs !!!DON'T CHANGE THIS NUMBER!!! //#define CurrencyCount 7 // number of currencies !!!DON'T CHANGE THIS NUMBER!!! #define TABSIZE 10 // scale of currency's power !!!DON'T CHANGE THIS NUMBER!!! #define ORDER 2 // available type of order !!!DON'T CHANGE THIS NUMBER!!! extern bool AccountIsIBFXmini = false; extern bool LoopOnInit=true; extern double BarHigh=8.0; extern double BarLow=2.0; extern bool mm=true; extern bool AccountIsMicro=false; extern double TradeSizePercent=0.2; extern double Lots=0.1; /* You can change any of the following arrays */ string aTradePair[]= {"GBPJPY"}; string aPair[] = {"EURUSD","GBPUSD","AUDUSD","USDJPY","USDCHF","USDCAD", "EURJPY","EURGBP","EURCHF","EURAUD","GBPJPY","GBPCHF"}; /* The following can also be changed but both must have the same dimension */ string aMajor[] = {"USD","EUR","GBP","CHF","CAD","AUD","JPY"}; int aMajorPos[] = {130, 110, 90, 70, 50, 30, 10}; string aOrder[ORDER] = {"BUY ","SELL "}; int aTable[TABSIZE] = {0,3,10,25,40,50,60,75,90,97}; // grade table for currency's power int Magic=05162007; int PairCount; int CurrencyCount; double aMeter[]; double aHigh[]; double aLow[]; double aBid[]; double aAsk[]; double aRatio[]; double aRange[]; double aLookup[]; double aStrength[]; int aIndex[2][]; //+------------------------------------------------------------------+ // expert initialization function | //+------------------------------------------------------------------+ int init() { int err,lastError, ps; PairCount=ArrayRange(aPair,0); CurrencyCount=ArrayRange(aMajor,0); ps=ArrayRange(aMajorPos,0); if(CurrencyCount!=ps) Print("The size of array aMajor is not equals to aMajorPos"); ArrayResize(aMeter,CurrencyCount); ArrayResize(aHigh,PairCount); ArrayResize(aLow,PairCount); ArrayResize(aBid,PairCount); ArrayResize(aAsk,PairCount); ArrayResize(aRatio,PairCount); ArrayResize(aRange,PairCount); ArrayResize(aLookup,PairCount); ArrayResize(aStrength,PairCount); init_tradepair_index(); //---- initGraph(); if (LoopOnInit) { while (true) // infinite loop for main program { if (IsConnected()) main(); if (!IsConnected()) objectBlank(); WindowRedraw(); Sleep(1000); // give your PC a breath } } //---- return(0); // end of init function } //+------------------------------------------------------------------+ // expert deinitialization function | //+------------------------------------------------------------------+ int deinit() { //---- ObjectsDeleteAll(0,OBJ_LABEL); Print("shutdown error - ",ErrorDescription(GetLastError())); // system is detached from platform //---- return(0); // end of deinit function } //+------------------------------------------------------------------+ // expert start function | //+------------------------------------------------------------------+ int start() { //---- if (!LoopOnInit) main(); //---- return(0); // end of start funtion } //+------------------------------------------------------------------+ // expert custom function | //+------------------------------------------------------------------+ void main() // this a control center { //---- double point; int index, pindex, cnt; string mySymbol; double cmeter; for (index = 0; index < PairCount; index++) // initialize all pairs required value { RefreshRates(); // refresh all currency's instrument if (AccountIsIBFXmini) mySymbol = aPair[index]+'m'; // Add "m for IBFX mini else mySymbol = aPair[index]; point = GetPoint(mySymbol); // get a point basis aHigh[index] = MarketInfo(mySymbol,MODE_HIGH); //iHigh(mySymbol,mTimeFrame,iHighest(mySymbol,mTimeFrame,MODE_HIGH,mPeriod,0)); // find highest aLow[index] = MarketInfo(mySymbol,MODE_LOW); //iLow(mySymbol,mTimeFrame,iLowest(mySymbol,mTimeFrame,MODE_LOW,mPeriod,0)); // find lowest aBid[index] = MarketInfo(mySymbol,MODE_BID); // set a last bid aAsk[index] = MarketInfo(mySymbol,MODE_ASK); // set a last ask aRange[index] = MathMax((aHigh[index]-aLow[index])/point,1); // calculate range today aRatio[index] = (aBid[index]-aLow[index])/aRange[index]/point; // calculate pair ratio aLookup[index] = iLookup(aRatio[index]*100); // set a pair grade aStrength[index] = 9-aLookup[index]; // set a pair strengh } // calculate all currencies meter for (pindex=0; pindex0) aMeter[pindex]=NormalizeDouble(cmeter / cnt,1); else aMeter[pindex]=-1; } } check_trade(); objectBlank(); for (pindex=0; pindex=BarHigh && aMeter[j]<=BarLow) OpenBuy(mySymbol,aAsk[n]); if(aMeter[i]<=BarLow && aMeter[j]>=BarHigh) OpenSell(mySymbol,aBid[n]); } else handle_openpositions(mySymbol, n); } } } void handle_openpositions(string mySymbol, int n) { int m, i, j; i=aIndex[0,n]; j=aIndex[1,n]; for (m=0;mBarLow) { CheckTradeContext(); OrderClose(OrderTicket(),OrderLots(),aBid[n],3,Red); } } if (OrderType()==OP_SELL) { if (aMeter[i]>BarLow && aMeter[j]0) { if(OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES)) Print("BUY order opened : ",OrderOpenPrice()); } else { Print("Error opening BUY order : ",GetLastError()+" Buy @ "+Price); //Print("Lots:",Lots,", TP:",TP,", SL:",SL); } } void OpenSell(string TradePair, double Price) { int ticket,err; CheckTradeContext(); ticket = OrderSend(TradePair,OP_SELL,LotsOptimized(),Price,3,0,0,"xMeter Trader",Magic,0,Red); if(ticket>0) { if(OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES)) Print("SELL order opened : ",OrderOpenPrice()); } else { Print("Error opening SELL order : ",GetLastError()+" Sell @ "+Price); } } double LotsOptimized() { if(mm==false) return(Lots); double lot=Lots; int decimalPlaces=1; if(AccountIsMicro==true) decimalPlaces=2; lot=NormalizeDouble(AccountFreeMargin()*TradeSizePercent/1000.0,decimalPlaces); if(lot<0.1 && AccountIsMicro==false) lot=0.1; if(lot<0.01 && AccountIsMicro==true) lot=0.01; if(lot>99) lot=99; return(lot); } void CheckTradeContext() { if(!IsTradeAllowed()) { // Print("Trade context is busy! Wait until it is free..."); // infinite loop while(true) { // if the expert was stopped by the user, stop operation if(IsStopped()) { // Print("The expert was stopped by the user!"); return(-1); } // if trade context has become free, terminate the loop and start trading if(IsTradeAllowed()) { // Print("Trade context has become free!"); break; } // if no loop breaking condition has been met, "wait" for 0.1 sec // and restart checking Sleep(100); } } } string GetSymbol(string mSymbol) { string RetSymbol; if (AccountIsIBFXmini) RetSymbol = mSymbol + "m"; else RetSymbol = mSymbol; return (RetSymbol); } double GetPoint(string mSymbol) { double myPoint = 0.0001, YenPoint = 0.01; string mySymbol; if (StringSubstr(mySymbol,3,3) == "JPY") return (YenPoint); return(myPoint); } int iLookup(double ratio) // this function will return a grade value { // based on its power. int index=-1, i; if (ratio <= aTable[0]) index = 0; else { for (i=1; i 0) ObjectSet(aMajor[pindex]+"_5",OBJPROP_COLOR,Red); if (value > 2) ObjectSet(aMajor[pindex]+"_4",OBJPROP_COLOR,Orange); if (value > 4) ObjectSet(aMajor[pindex]+"_3",OBJPROP_COLOR,Gold); if (value > 6) ObjectSet(aMajor[pindex]+"_2",OBJPROP_COLOR,YellowGreen); if (value > 7) ObjectSet(aMajor[pindex]+"_1",OBJPROP_COLOR,Lime); ObjectSet(aMajor[pindex],OBJPROP_COLOR,SkyBlue); ObjectSetText(aMajor[pindex]+"p",DoubleToStr(value,1),8,"Arial Narrow",Silver); } void paintLine() { ObjectSet("line1",OBJPROP_COLOR,DimGray); ObjectSet("line2",OBJPROP_COLOR,DimGray); }