From 4a01c30f3441ebc4152c014c2ac4cd5a1964b668 Mon Sep 17 00:00:00 2001 From: Ben Davison Date: Thu, 30 Jan 2020 21:44:14 +0000 Subject: [PATCH] Expose BestOffers on ISymbolOrderBook interface --- CryptoExchange.Net/CryptoExchange.Net.xml | 5 +++++ CryptoExchange.Net/Interfaces/ISymbolOrderBook.cs | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/CryptoExchange.Net/CryptoExchange.Net.xml b/CryptoExchange.Net/CryptoExchange.Net.xml index 0954f72..880dd15 100644 --- a/CryptoExchange.Net/CryptoExchange.Net.xml +++ b/CryptoExchange.Net/CryptoExchange.Net.xml @@ -837,6 +837,11 @@ The best ask currently in the order book + + + BestBid/BesAsk returned as a pair + + Start connecting and synchronizing the order book diff --git a/CryptoExchange.Net/Interfaces/ISymbolOrderBook.cs b/CryptoExchange.Net/Interfaces/ISymbolOrderBook.cs index 9d0b502..10275c3 100644 --- a/CryptoExchange.Net/Interfaces/ISymbolOrderBook.cs +++ b/CryptoExchange.Net/Interfaces/ISymbolOrderBook.cs @@ -70,6 +70,11 @@ namespace CryptoExchange.Net.Interfaces /// ISymbolOrderBookEntry BestAsk { get; } + /// + /// BestBid/BesAsk returned as a pair + /// + Tuple BestOffers { get; } + /// /// Start connecting and synchronizing the order book ///