mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-13 10:48:08 +00:00
MtApi5.ex5: Update version to 1.5. Disable debug logging
This commit is contained in:
Binary file not shown.
+10
-2
@@ -1,7 +1,7 @@
|
|||||||
#property copyright "Vyacheslav Demidyuk"
|
#property copyright "Vyacheslav Demidyuk"
|
||||||
#property link ""
|
#property link ""
|
||||||
|
|
||||||
#property version "1.4"
|
#property version "1.5"
|
||||||
#property description "MtApi (MT5) connection expert"
|
#property description "MtApi (MT5) connection expert"
|
||||||
|
|
||||||
#include <json.mqh>
|
#include <json.mqh>
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
bool getBooleanValue(int expertHandle, int paramIndex, bool& res, string& err);
|
bool getBooleanValue(int expertHandle, int paramIndex, bool& res, string& err);
|
||||||
#import
|
#import
|
||||||
|
|
||||||
#define __DEBUG_LOG__
|
//#define __DEBUG_LOG__
|
||||||
|
|
||||||
input int Port = 8228;
|
input int Port = 8228;
|
||||||
|
|
||||||
@@ -807,6 +807,9 @@ int executeCommand()
|
|||||||
case 263: //ChartScreenShot
|
case 263: //ChartScreenShot
|
||||||
Execute_ChartScreenShot();
|
Execute_ChartScreenShot();
|
||||||
break;
|
break;
|
||||||
|
case 264: //WindowBarsPerChart
|
||||||
|
Execute_WindowBarsPerChart();
|
||||||
|
break;
|
||||||
case 280: //ChartIndicatorAdd
|
case 280: //ChartIndicatorAdd
|
||||||
Execute_ChartIndicatorAdd();
|
Execute_ChartIndicatorAdd();
|
||||||
break;
|
break;
|
||||||
@@ -6106,6 +6109,11 @@ void Execute_ChartScreenShot()
|
|||||||
SEND_BOOL_RESPONSE(result)
|
SEND_BOOL_RESPONSE(result)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Execute_WindowBarsPerChart()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
void Execute_ChartIndicatorAdd()
|
void Execute_ChartIndicatorAdd()
|
||||||
{
|
{
|
||||||
long chart_id;
|
long chart_id;
|
||||||
|
|||||||
Reference in New Issue
Block a user