From 0cd7d496a98e2f069da98d7f72815441403a5d3b Mon Sep 17 00:00:00 2001 From: Jan Korf Date: Thu, 27 Jun 2019 11:43:39 +0200 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 044e2a7..fde3bf6 100644 --- a/README.md +++ b/README.md @@ -180,6 +180,8 @@ var askCount = orderBook.AskCount; // The current number of asks in the book var bidCount = orderBook.BidCount; // The current number of bids in the book var asks = orderBook.Asks; // All asks var bids = orderBook.Bids; // All bids +var bestBid = orderBook.BestBid; // The best bid available in the book +var bestAsk = orderBook.BestAsk; // The best ask available in the book ```` The order book will automatically reconnect when the connection is lost and resync if it detects the sequence is off. Make sure to check the Status property to see it the book is currently in sync.