mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-10 17:36:19 +00:00
Expose BestOffers on ISymbolOrderBook interface
This commit is contained in:
parent
635ba1747c
commit
4a01c30f34
@ -837,6 +837,11 @@
|
|||||||
The best ask currently in the order book
|
The best ask currently in the order book
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:CryptoExchange.Net.Interfaces.ISymbolOrderBook.BestOffers">
|
||||||
|
<summary>
|
||||||
|
BestBid/BesAsk returned as a pair
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="M:CryptoExchange.Net.Interfaces.ISymbolOrderBook.Start">
|
<member name="M:CryptoExchange.Net.Interfaces.ISymbolOrderBook.Start">
|
||||||
<summary>
|
<summary>
|
||||||
Start connecting and synchronizing the order book
|
Start connecting and synchronizing the order book
|
||||||
|
@ -70,6 +70,11 @@ namespace CryptoExchange.Net.Interfaces
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
ISymbolOrderBookEntry BestAsk { get; }
|
ISymbolOrderBookEntry BestAsk { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// BestBid/BesAsk returned as a pair
|
||||||
|
/// </summary>
|
||||||
|
Tuple<ISymbolOrderBookEntry, ISymbolOrderBookEntry> BestOffers { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Start connecting and synchronizing the order book
|
/// Start connecting and synchronizing the order book
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user