1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-18 11:52:54 +00:00

Added SharedTickerType for defining time used for ticker calculations by the API

This commit is contained in:
Jkorf
2025-11-10 09:15:20 +01:00
parent 8043a48c49
commit 6cf9684f55
9 changed files with 157 additions and 6 deletions
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace CryptoExchange.Net.SharedApis.Enums
{
/// <summary>
/// Type of ticker
/// </summary>
public enum SharedTickerType
{
/// <summary>
/// The ticker data is calculated based on the last 24 hours
/// </summary>
Day24H,
/// <summary>
/// The ticker data is calculated based on the start of the day at 00:00 on UTC+0
/// </summary>
DayUTc0,
/// <summary>
/// Ticker data is calculated in a different way or not consistent
/// </summary>
Other
}
}