mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
14 lines
436 B
C#
14 lines
436 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MtApi5.Requests
|
|
{
|
|
internal class IndicatorCreateRequest: RequestBase
|
|
{
|
|
public override RequestType RequestType => RequestType.IndicatorCreate;
|
|
|
|
public string Symbol { get; set; }
|
|
public ENUM_TIMEFRAMES Period { get; set; }
|
|
public ENUM_INDICATOR IndicatorType { get; set; }
|
|
public List<MqlParam> Parameters { get; set; }
|
|
}
|
|
} |