//+------------------------------------------------------------------+ // // Copyright (C) 2019 Nikolai Khramkov // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // //+------------------------------------------------------------------+ // TODO: Deviation #property copyright "Copyright 2019, Nikolai Khramkov." #property link "https://github.com/khramkov" #property version "1.30" #property description "MQL5 JSON API" #property description "See github link for documentation" #include #include #include #include #include string HOST="*"; int SYS_PORT=15555; int DATA_PORT=15556; int LIVE_PORT=15557; int STR_PORT=15558; // ZeroMQ Cnnections Context context("MQL5 JSON API"); Socket sysSocket(context,ZMQ_REP); Socket dataSocket(context,ZMQ_PUSH); Socket liveSocket(context,ZMQ_PUSH); Socket streamSocket(context,ZMQ_PUSH); // Global variables bool debug = true; bool liveStream = true; bool connectedFlag= true; datetime lastBar = 0; string chartTF = ""; //+------------------------------------------------------------------+ //| Expert initialization function | //+------------------------------------------------------------------+ int OnInit(){ /* Bindinig ZMQ ports on init */ // OnTimer() function event genegation - 1 millisecond EventSetMillisecondTimer(1); sysSocket.bind(StringFormat("tcp://%s:%d",HOST,SYS_PORT)); dataSocket.bind(StringFormat("tcp://%s:%d",HOST,DATA_PORT)); liveSocket.bind(StringFormat("tcp://%s:%d",HOST,LIVE_PORT)); streamSocket.bind(StringFormat("tcp://%s:%d",HOST,STR_PORT)); Print("Binding 'System' socket on port "+IntegerToString(SYS_PORT)+"..."); Print("Binding 'Data' socket on port "+IntegerToString(DATA_PORT)+"..."); Print("Binding 'Live' socket on port "+IntegerToString(LIVE_PORT)+"..."); Print("Binding 'Streaming' socket on port "+IntegerToString(STR_PORT)+"..."); sysSocket.setLinger(1000); dataSocket.setLinger(1000); liveSocket.setLinger(1000); streamSocket.setLinger(1000); // Number of messages to buffer in RAM. sysSocket.setSendHighWaterMark(1); dataSocket.setSendHighWaterMark(5); liveSocket.setSendHighWaterMark(1); streamSocket.setSendHighWaterMark(50); return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Expert deinitialization function | //+------------------------------------------------------------------+ void OnDeinit(const int reason){ /* Unbinding ZMQ ports on denit */ Print(__FUNCTION__," Deinitialization reason code = ",reason); sysSocket.unbind(StringFormat("tcp://%s:%d",HOST,SYS_PORT)); dataSocket.unbind(StringFormat("tcp://%s:%d",HOST,DATA_PORT)); liveSocket.unbind(StringFormat("tcp://%s:%d",HOST,LIVE_PORT)); streamSocket.unbind(StringFormat("tcp://%s:%d",HOST,STR_PORT)); Print("Unbinding 'System' socket on port "+IntegerToString(SYS_PORT)+".."); Print("Unbinding 'Data' socket on port "+IntegerToString(DATA_PORT)+".."); Print("Unbinding 'Live' socket on port "+IntegerToString(LIVE_PORT)+".."); Print("Unbinding 'Streaming' socket on port "+IntegerToString(STR_PORT)+"..."); } //+------------------------------------------------------------------+ //| Expert timer function | //+------------------------------------------------------------------+ void RequestCandles(){ // If liveStream == true, push last candle to liveSocket. if(liveStream){ CJAVal candle, last; datetime thisBar=(datetime)SeriesInfoInteger(_Symbol,_Period,SERIES_LASTBAR_DATE); if(lastBar!=thisBar){ MqlRates rates[1]; if(CopyRates(_Symbol,_Period,1,1,rates)!=1) { /*error processing */ }; candle[0] = (long) rates[0].time; candle[1] = (double) rates[0].open; candle[2] = (double) rates[0].high; candle[3] = (double) rates[0].low; candle[4] = (double) rates[0].close; candle[5] = (double) rates[0].tick_volume; // skip sending data on script init when lastBar == 0 if(lastBar!=0){ last["status"] = (string) "CONNECTED"; last["data"].Set(candle); string t=last.Serialize(); if(debug) Print("Candle ", t); InformClientSocket(liveSocket,t); } lastBar=thisBar; } } } void OnTimer(){ ZmqMsg request; // If liveStream == true, push last candle to liveSocket. if(liveStream){ CJAVal last; // Check if terminal connected to market if(TerminalInfoInteger(TERMINAL_CONNECTED)){ if(chartTF!="TICKS"){ RequestCandles(); } connectedFlag=true; } //If disconnected from market else { // send disconnect message only once if(connectedFlag){ last["status"] = (string) "DISCONNECTED"; string t=last.Serialize(); if(debug) Print(t); InformClientSocket(liveSocket,t); connectedFlag=false; } } } // Get request from client via System socket. sysSocket.recv(request,true); // Request recived if(request.size()>0){ // Pull request to RequestHandler(). RequestHandler(request); } } void OnTick(){ if(chartTF=="TICKS"){ ZmqMsg request; // If liveStream == true, push last candle to liveSocket. if(liveStream){ CJAVal tickData, last; // Check if terminal connected to market if(TerminalInfoInteger(TERMINAL_CONNECTED)){ MqlTick tick; if(SymbolInfoTick(_Symbol,tick)){ tickData[0] = (long) tick.time; tickData[1] = (double) tick.bid; tickData[2] = (double) tick.ask; last["status"] = (string) "CONNECTED"; last["data"].Set(tickData); string t=last.Serialize(); if(debug) Print(t); InformClientSocket(liveSocket,t); } connectedFlag=true; } //If disconnected from market else { // send disconnect message only once if(connectedFlag){ last["status"] = (string) "DISCONNECTED"; string t=last.Serialize(); if(debug) Print(t); InformClientSocket(liveSocket,t); connectedFlag=false; } } } } } //+------------------------------------------------------------------+ //| Request handler | //+------------------------------------------------------------------+ void RequestHandler(ZmqMsg &request){ CJAVal message; ResetLastError(); // Get data from reguest string msg=request.getData(); if(debug) Print("Processing:"+msg); // Deserialize msg to CJAVal array if(!message.Deserialize(msg)){ ActionDoneOrError(65537, __FUNCTION__); Alert("Deserialization Error"); ExpertRemove(); } // Send response to System socket that request was received // Some historical data requests can take a lot of time InformClientSocket(sysSocket, "OK"); // Process action command string action = message["action"].ToStr(); if(action=="CONFIG") {ScriptConfiguration(message);} else if(action=="ACCOUNT") {GetAccountInfo();} else if(action=="BALANCE") {GetBalanceInfo();} else if(action=="HISTORY") {HistoryInfo(message);} else if(action=="TRADE") {TradingModule(message);} else if(action=="POSITIONS") {GetPositions(message);} else if(action=="ORDERS") {GetOrders(message);} // Action command error processing else ActionDoneOrError(65538, __FUNCTION__); } //+------------------------------------------------------------------+ //| Reconfigure the script params | //+------------------------------------------------------------------+ void ScriptConfiguration(CJAVal &dataObject){ string symb=dataObject["symbol"].ToStr(); ENUM_TIMEFRAMES tf=GetTimeframe(dataObject["chartTF"].ToStr()); chartTF = dataObject["chartTF"].ToStr(); // set for global // If the symbol and(or) TF are different from the chart values if(!(tf == _Period & symb == _Symbol)){ // Check if symbol exists if(SymbolInfoInteger(symb, SYMBOL_EXIST)){ // Set chart symbol and TF if(ChartSetSymbolPeriod(0, symb, tf)) // All done ActionDoneOrError(ERR_SUCCESS, __FUNCTION__); // Error Handling else ActionDoneOrError(ERR_MARKET_WRONG_PROPERTY, __FUNCTION__); } else ActionDoneOrError(ERR_MARKET_UNKNOWN_SYMBOL, __FUNCTION__); } // Nothing to change else ActionDoneOrError(ERR_SUCCESS, __FUNCTION__); } //+------------------------------------------------------------------+ //| Account information | //+------------------------------------------------------------------+ void GetAccountInfo(){ CJAVal info; info["error"] = false; info["broker"] = AccountInfoString(ACCOUNT_COMPANY); info["currency"] = AccountInfoString(ACCOUNT_CURRENCY); info["server"] = AccountInfoString(ACCOUNT_SERVER); info["trading_allowed"] = TerminalInfoInteger(TERMINAL_TRADE_ALLOWED); info["bot_trading"] = AccountInfoInteger(ACCOUNT_TRADE_EXPERT); info["balance"] = AccountInfoDouble(ACCOUNT_BALANCE); info["equity"] = AccountInfoDouble(ACCOUNT_EQUITY); info["margin"] = AccountInfoDouble(ACCOUNT_MARGIN); info["margin_free"] = AccountInfoDouble(ACCOUNT_MARGIN_FREE); info["margin_level"] = AccountInfoDouble(ACCOUNT_MARGIN_LEVEL); string t=info.Serialize(); if(debug) Print(t); InformClientSocket(dataSocket,t); } //+------------------------------------------------------------------+ //| Balance information | //+------------------------------------------------------------------+ void GetBalanceInfo(){ CJAVal info; info["balance"] = AccountInfoDouble(ACCOUNT_BALANCE); info["equity"] = AccountInfoDouble(ACCOUNT_EQUITY); info["margin"] = AccountInfoDouble(ACCOUNT_MARGIN); info["margin_free"] = AccountInfoDouble(ACCOUNT_MARGIN_FREE); string t=info.Serialize(); if(debug) Print(t); InformClientSocket(dataSocket,t); } //+------------------------------------------------------------------+ //| Get historical data | //+------------------------------------------------------------------+ void HistoryInfo(CJAVal &dataObject){ string actionType = dataObject["actionType"].ToStr(); if(actionType=="DATA" && chartTF=="TICKS"){ CJAVal data, d; MqlTick tickArray[]; string symbol=dataObject["symbol"].ToStr(); ENUM_TIMEFRAMES period=GetTimeframe(chartTF); datetime fromDate=(datetime)dataObject["fromDate"].ToInt(); datetime toDate=TimeCurrent(); if(dataObject["toDate"].ToInt()!=NULL) toDate=(datetime)dataObject["toDate"].ToInt(); if(debug){ Print("Fetching HISTORY"); Print("1) Symbol:"+symbol); Print("2) Timeframe:"+EnumToString(period)); Print("3) Date from:"+TimeToString(fromDate)); if(dataObject["toDate"].ToInt()!=NULL)Print("4) Date to:"+TimeToString(toDate)); } int tickCount = 0; ulong fromDateM = StringToTime(fromDate); ulong toDateM = StringToTime(toDate); tickCount=CopyTicksRange(symbol,tickArray,COPY_TICKS_ALL,1000*(ulong)fromDateM,1000*(ulong)toDateM); Print("Preparing tick data of ", tickCount, " ticks"); if(tickCount){ int j = 0; // TODO this is VERY slow for(int i=0;i 0 && tickArray[i].time > tickArray[i-1].time ){ // Print(StringToTime(tickArray[i].time)); data[j][0]=(long) tickArray[i].time; data[j][1]=(double) tickArray[i].bid; data[j][2]=(double) tickArray[i].ask; j++; } } d["data"].Set(data); } else {d["data"].Add(data);} Print("Finished prparing tick data"); string t=d.Serialize(); if(debug) Print(t); InformClientSocket(dataSocket,t); } else if(actionType=="DATA" && chartTF!="TICKS"){ CJAVal c, d; MqlRates r[]; int copied; string symbol=dataObject["symbol"].ToStr(); ENUM_TIMEFRAMES period=GetTimeframe(chartTF); datetime fromDate=(datetime)dataObject["fromDate"].ToInt(); datetime toDate=TimeCurrent(); if(dataObject["toDate"].ToInt()!=NULL) toDate=(datetime)dataObject["toDate"].ToInt(); if(debug){ Print("Fetching HISTORY"); Print("1) Symbol:"+symbol); Print("2) Timeframe:"+EnumToString(period)); Print("3) Date from:"+TimeToString(fromDate)); if(dataObject["toDate"].ToInt()!=NULL)Print("4) Date to:"+TimeToString(toDate)); } copied=CopyRates(symbol,period,fromDate,toDate,r); if(copied){ for(int i=0;i0) { tradeInfo.Ticket(ticket); data["ticket"]=(long) tradeInfo.Ticket(); data["time"]=(long) tradeInfo.Time(); data["price"]=(double) tradeInfo.Price(); data["volume"]=(double) tradeInfo.Volume(); data["symbol"]=(string) tradeInfo.Symbol(); data["type"]=(string) tradeInfo.TypeDescription(); data["entry"]=(long) tradeInfo.Entry(); data["profit"]=(double) tradeInfo.Profit(); trades["trades"].Add(data); } } } else {trades["trades"].Add(data);} string t=trades.Serialize(); if(debug) Print(t); InformClientSocket(dataSocket,t); } // Error wrong action type else ActionDoneOrError(65538, __FUNCTION__); } //+------------------------------------------------------------------+ //| Fetch positions information | //+------------------------------------------------------------------+ void GetPositions(CJAVal &dataObject){ CPositionInfo myposition; CJAVal data, position; // Get positions int positionsTotal=PositionsTotal(); // Create empty array if no positions if(!positionsTotal) data["positions"].Add(position); // Go through positions in a loop for(int i=0;i