1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-21 05:13:21 +00:00

Updated example, removed global.json

This commit is contained in:
Jkorf
2022-01-03 09:37:50 +01:00
parent 120132c45b
commit 7a195f662c
10 changed files with 57 additions and 72 deletions
+3 -3
View File
@@ -11,13 +11,13 @@
@using Huobi.Net.SymbolOrderBooks
@using Kraken.Net.SymbolOrderBooks
@using Kucoin.Net.Clients
@using Kucoin.Net.SymbolOrderBook
@using Kucoin.Net.SymbolOrderBooks
@using System.Collections.Concurrent
@using System.Timers
@implements IDisposable
<h3>ETH-BTC books, live updates:</h3>
@foreach(var book in _books)
@foreach(var book in _books.OrderBy(p => p.Key))
{
<div style="margin-bottom: 20px;">
<h4>@book.Key</h4>
@@ -25,7 +25,7 @@
{
for (var i = 0; i < 3; i++)
{
<div>@book.Value.Asks.ElementAt(i).Price - @book.Value.Bids.ElementAt(i).Price </div>
<div>@book.Value.Bids.ElementAt(i).Price - @book.Value.Asks.ElementAt(i).Price</div>
}
}
</div>