mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-31 20:47:51 +00:00
14 lines
360 B
C#
14 lines
360 B
C#
using System;
|
|
|
|
namespace MtApi5.Requests
|
|
{
|
|
internal class ChartXyToTimePriceResult
|
|
{
|
|
public bool RetVal { get; set; }
|
|
public int SubWindow { get; set; }
|
|
public DateTime? Time => Mt5TimeConverter.ConvertFromMtTime(MtTime);
|
|
public double Price { get; set; }
|
|
|
|
public int MtTime { get; set; }
|
|
}
|
|
} |