Skip to content

Commit

Permalink
MtApi5.ex5: Update version to 1.5. Disable debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
vdemydiuk committed Mar 27, 2018
1 parent 6b327e0 commit 52ca4fa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Binary file modified mq5/MtApi5.ex5
Binary file not shown.
12 changes: 10 additions & 2 deletions mq5/MtApi5.mq5
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#property copyright "Vyacheslav Demidyuk"
#property link ""

#property version "1.4"
#property version "1.5"
#property description "MtApi (MT5) connection expert"

#include <json.mqh>
Expand Down Expand Up @@ -41,7 +41,7 @@
bool getBooleanValue(int expertHandle, int paramIndex, bool& res, string& err);
#import

#define __DEBUG_LOG__
//#define __DEBUG_LOG__

input int Port = 8228;

Expand Down Expand Up @@ -807,6 +807,9 @@ int executeCommand()
case 263: //ChartScreenShot
Execute_ChartScreenShot();
break;
case 264: //WindowBarsPerChart
Execute_WindowBarsPerChart();
break;
case 280: //ChartIndicatorAdd
Execute_ChartIndicatorAdd();
break;
Expand Down Expand Up @@ -6106,6 +6109,11 @@ void Execute_ChartScreenShot()
SEND_BOOL_RESPONSE(result)
}

void Execute_WindowBarsPerChart()
{

}

void Execute_ChartIndicatorAdd()
{
long chart_id;
Expand Down

0 comments on commit 52ca4fa

Please sign in to comment.