Issue #59: Added event OnChartEvent into MtApi (MT4)

This commit is contained in:
DW
2017-09-05 18:34:26 +03:00
parent 4b48423c3f
commit b77516e324
12 changed files with 91 additions and 21 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace MtApi
{
internal class MtChartEvent
{
public long ChartId { get; set; }
public int EventId { get; set; }
public long Lparam { get; set; }
public double Dparam { get; set; }
public string Sparam { get; set; }
}
}