mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2026-04-13 00:22:22 +00:00
45 lines
1.5 KiB
C#
45 lines
1.5 KiB
C#
using System;
|
|
|
|
namespace CryptoExchange.Net.SharedApis
|
|
{
|
|
/// <summary>
|
|
/// Request to retrieve the public trade history
|
|
/// </summary>
|
|
public record GetTradeHistoryRequest : SharedSymbolRequest
|
|
{
|
|
/// <summary>
|
|
/// Filter by start time
|
|
/// </summary>
|
|
public DateTime StartTime { get; set; }
|
|
/// <summary>
|
|
/// Filter by end time
|
|
/// </summary>
|
|
public DateTime? EndTime { get; set; }
|
|
/// <summary>
|
|
/// Max number of results
|
|
/// </summary>
|
|
public int? Limit { get; set; }
|
|
/// <summary>
|
|
/// Data direction
|
|
/// </summary>
|
|
public DataDirection? Direction { get; set; }
|
|
|
|
/// <summary>
|
|
/// ctor
|
|
/// </summary>
|
|
/// <param name="symbol">Symbol to retrieve trades for</param>
|
|
/// <param name="startTime">Filter by start time</param>
|
|
/// <param name="endTime">Filter by end time</param>
|
|
/// <param name="limit">Max number of results</param>
|
|
/// <param name="direction">Data direction</param>
|
|
/// <param name="exchangeParameters">Exchange specific parameters</param>
|
|
public GetTradeHistoryRequest(SharedSymbol symbol, DateTime startTime, DateTime? endTime = null, int? limit = null, DataDirection? direction = null, ExchangeParameters? exchangeParameters = null) : base(symbol, exchangeParameters)
|
|
{
|
|
StartTime = startTime;
|
|
EndTime = endTime;
|
|
Limit = limit;
|
|
Direction = direction;
|
|
}
|
|
}
|
|
}
|