Issue #39: Added indicator functions on C# side (MtApi MT5)

This commit is contained in:
DW
2017-11-27 18:09:54 +02:00
parent b8314e9ed7
commit 08ba45c65f
7 changed files with 666 additions and 4 deletions
+23
View File
@@ -0,0 +1,23 @@
using System.Collections;
namespace MtApi5.Requests
{
internal class ICustomRequest : RequestBase
{
public enum ParametersType
{
Int = 0,
Double = 1,
String = 2,
Boolean = 3
}
public string Symbol { get; set; }
public int Timeframe { get; set; }
public string Name { get; set; }
public ArrayList Params { get; set; }
public ParametersType ParamsType { get; set; }
public override RequestType RequestType => RequestType.iCustom;
}
}