mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 16:36:15 +00:00
36 lines
909 B
C#
36 lines
909 B
C#
using System;
|
|
|
|
namespace CryptoExchange.Net.ExchangeInterfaces
|
|
{
|
|
/// <summary>
|
|
/// Common kline
|
|
/// </summary>
|
|
public interface ICommonKline
|
|
{
|
|
/// <summary>
|
|
/// High price for this kline
|
|
/// </summary>
|
|
decimal CommonHighPrice { get; }
|
|
/// <summary>
|
|
/// Low price for this kline
|
|
/// </summary>
|
|
decimal CommonLowPrice { get; }
|
|
/// <summary>
|
|
/// Open price for this kline
|
|
/// </summary>
|
|
decimal CommonOpenPrice { get; }
|
|
/// <summary>
|
|
/// Close price for this kline
|
|
/// </summary>
|
|
decimal CommonClosePrice { get; }
|
|
/// <summary>
|
|
/// Open time for this kline
|
|
/// </summary>
|
|
DateTime CommonOpenTime { get; }
|
|
/// <summary>
|
|
/// Volume of this kline
|
|
/// </summary>
|
|
decimal CommonVolume { get; }
|
|
}
|
|
}
|