1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-20 12:53:02 +00:00

Ticking price event

This commit is contained in:
Ben Davison
2019-12-11 13:26:13 +00:00
parent a525709562
commit e7ec10e98d
3 changed files with 186 additions and 3 deletions
@@ -33,6 +33,10 @@ namespace CryptoExchange.Net.Interfaces
/// </summary>
event Action<IEnumerable<ISymbolOrderBookEntry>, IEnumerable<ISymbolOrderBookEntry>> OnOrderBookUpdate;
/// <summary>
/// Event when the BestBid or BestAsk changes ie a Pricing Tick
/// </summary>
event Action<ISymbolOrderBookEntry, ISymbolOrderBookEntry> OnPriceChanged;
/// <summary>
/// Timestamp of the last update
/// </summary>
DateTime LastOrderBookUpdate { get; }