19 lines
521 B
C#
19 lines
521 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using WebSocket.Interfaces;
|
|
|
|
namespace WebSocket.Clients
|
|
{
|
|
public class MarketOHLCVData: IMarketOHLCVData
|
|
{
|
|
public string PairSymbol { get; set; }
|
|
public decimal OpenPrice { get; set; }
|
|
public decimal HighPrice { get; set; }
|
|
public decimal LowPrice { get; set; }
|
|
public decimal ClosePrice { get; set; }
|
|
public decimal Volume { get; set; }
|
|
public DateTime TimeStamp { get; set; }
|
|
}
|
|
}
|