mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-11 09:56:18 +00:00
docs
This commit is contained in:
parent
0f65701f90
commit
66fce6cb84
@ -93,3 +93,5 @@ var closePrice = kline.CommonClose;
|
|||||||
var kline = await binanceClient.SpotApi.ComonSpotClient.GetKlinesAysnc(/*params*/);
|
var kline = await binanceClient.SpotApi.ComonSpotClient.GetKlinesAysnc(/*params*/);
|
||||||
var closePrice = kline.ClosePrice;
|
var closePrice = kline.ClosePrice;
|
||||||
```
|
```
|
||||||
|
|
||||||
|
For more details on the interfaces see [Common interfaces](interfaces.html)
|
@ -38,7 +38,7 @@ Note that these will return copies of the internally synced lists when accessing
|
|||||||
When you need both lists in sync you should access the `Book` property.
|
When you need both lists in sync you should access the `Book` property.
|
||||||
`var (currentBidList, currentAskList) = book.Book;`
|
`var (currentBidList, currentAskList) = book.Book;`
|
||||||
|
|
||||||
Because copies of the lists are made when accessing the bids/asks properties the performance impact should be considered. When only the current best ask/bid info is needed you can access the `BestOffers` property.
|
Because copies of the lists are made when accessing the bids/asks properties the performance impact should be considered. When only the current best ask/bid info is needed you can access the `BestOffers` property.
|
||||||
`var (bestBid, bestAsk) = book.BestOffers;`
|
`var (bestBid, bestAsk) = book.BestOffers;`
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
Loading…
x
Reference in New Issue
Block a user