-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathProgram.cs
More file actions
236 lines (194 loc) · 9.04 KB
/
Program.cs
File metadata and controls
236 lines (194 loc) · 9.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
using System;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Binance;
using Binance.Application;
using Binance.Cache;
using Binance.Client;
using Binance.Utility;
using Binance.WebSocket;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
// ReSharper disable AccessToDisposedClosure
namespace BinanceMarketDepth
{
/// <summary>
/// Demonstrate how to maintain an order book cache for a symbol
/// and respond to real-time depth-of-market update events.
/// </summary>
internal class Program
{
private static async Task Main()
{
ExampleMain();
//AdvancedExampleMain();
//await MultiCacheExample.ExampleMain();
//await MultiCacheCombinedStreamsExample.ExampleMain();
//await CombinedStreamsExample.AdvancedExampleMain();
await Task.CompletedTask;
}
/// <summary>
/// Example using cache and manager.
/// </summary>
private static void ExampleMain()
{
try
{
// Load configuration.
var configuration = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", true, false)
.Build();
// Configure services.
var services = new ServiceCollection()
.AddBinance() // add default Binance services.
.AddLogging(builder => builder // configure logging.
.SetMinimumLevel(LogLevel.Trace)
.AddFile(configuration.GetSection("Logging:File")))
// Use alternative, low-level, web socket client implementation.
//.AddTransient<IWebSocketClient, WebSocket4NetClient>()
//.AddTransient<IWebSocketClient, WebSocketSharpClient>()
.BuildServiceProvider();
Console.Clear(); // clear the display.
// Get configuration settings.
var symbols = configuration.GetSection("OrderBook:Symbols").Get<string[]>()
?? new string[] { Symbol.BTC_USDT };
var limit = 10;
try { limit = Convert.ToInt32(configuration.GetSection("OrderBook")?["Limit"]); }
catch { /* ignore */ }
// NOTE: Currently the Partial Book Depth Stream only supports limits of: 5, 10, or 20.
if (limit > 10) limit = 20;
else if (limit > 5) limit = 10;
else if (limit > 0) limit = 5;
// Initialize cache.
var cache = services.GetService<IDepthWebSocketCache>();
// Add error event handler.
cache.Error += (s, e) => Console.WriteLine(e.Exception.Message);
foreach (var symbol in symbols)
{
// Subscribe cache to symbol with limit and callback.
// NOTE: If no limit is provided (or limit = 0) then the order book is initialized with
// limit = 1000 and the diff. depth stream is used to keep order book up-to-date.
cache.Subscribe(symbol, limit, Display); // ...automatically begin streaming.
lock (_sync)
{
_message = symbol == symbols.Last()
? $"Symbol: \"{symbol}\" ...press any key to exit."
: $"Symbol: \"{symbol}\" ...press any key to continue.";
}
Console.ReadKey(true); // wait for user input.
// Unsubscribe cache (automatically end streaming).
cache.Unsubscribe();
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
Console.WriteLine();
Console.WriteLine(" ...press any key to close window.");
Console.ReadKey(true);
}
}
/// <summary>
/// Example using cache, web socket stream (or client), and controller.
/// </summary>
// ReSharper disable once UnusedMember.Local
private static void AdvancedExampleMain()
{
try
{
// Load configuration.
var configuration = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", true, false)
.Build();
// Configure services.
var services = new ServiceCollection()
.AddBinance() // add default Binance services.
.AddLogging(builder => builder // configure logging.
.SetMinimumLevel(LogLevel.Trace)
.AddFile(configuration.GetSection("Logging:File")))
.BuildServiceProvider();
Console.Clear(); // clear the display.
// Get configuration settings.
var limit = 10;
var symbol = configuration.GetSection("OrderBook")?["Symbol"] ?? Symbol.BTC_USDT;
try { limit = Convert.ToInt32(configuration.GetSection("OrderBook")?["Limit"]); }
catch { /* ignore */ }
// NOTE: Currently the Partial Book Depth Stream only supports limits of: 5, 10, or 20.
if (limit > 10) limit = 20;
else if (limit > 5) limit = 10;
else if (limit > 0) limit = 5;
// Initialize cache.
var cache = services.GetService<IOrderBookCache>();
// Initialize web socket stream.
var webSocket = services.GetService<IBinanceWebSocketStream>();
// Initialize controller.
using (var controller = new RetryTaskController(webSocket.StreamAsync))
{
controller.Error += (s, e) => HandleError(e.Exception);
// Subscribe cache to symbol with limit and callback.
// NOTE: If no limit is provided (or limit = 0) then the order book is initialized with
// limit = 1000 and the diff. depth stream is used to keep order book up-to-date.
cache.Subscribe(symbol, limit, Display);
// Set web socket URI using cache subscribed streams.
webSocket.Uri = BinanceWebSocketStream.CreateUri(cache);
// NOTE: This must be done after cache subscribe.
// Route stream messages to cache.
webSocket.Message += (s, e) => cache.HandleMessage(e.Subject, e.Json);
// Begin streaming.
controller.Begin();
lock (_sync) _message = "...press any key to continue.";
Console.ReadKey(true); // wait for user input.
}
//*/////////////////////////////////////////
// Alternative usage (with an IJsonClient).
////////////////////////////////////////////
// Initialize client.
var client = services.GetService<IDepthClient>();
cache.Client = client; // link [new] client to cache.
// Initialize controller.
using (var controller = new RetryTaskController(webSocket.StreamAsync))
{
controller.Error += (s, e) => HandleError(e.Exception);
// Subscribe cache to symbol with limit and callback.
//cache.Subscribe(symbol, limit, Display);
// NOTE: Cache is already subscribed to symbol (above).
// Begin streaming.
controller.Begin();
lock (_sync) _message = "(alternative usage) ...press any key to exit.";
Console.ReadKey(true); // wait for user input.
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
Console.WriteLine();
Console.WriteLine(" ...press any key to close window.");
Console.ReadKey(true);
}
}
private static string _message;
// ReSharper disable once InconsistentNaming
private static readonly object _sync = new object();
private static void Display(OrderBookCacheEventArgs args)
{
lock (_sync)
{
Console.SetCursorPosition(0, 0);
args.OrderBook.Print(Console.Out, 10); // limit to 10.
Console.WriteLine();
Console.WriteLine(_message.PadRight(119));
}
}
private static void HandleError(Exception e)
{
lock (_sync)
{
Console.WriteLine(e.Message);
}
}
}
}