diff --git a/docs/index.html b/docs/index.html index f51fc4d..5b78fed 100644 --- a/docs/index.html +++ b/docs/index.html @@ -3265,6 +3265,9 @@ foreach (var book in books.Where(b => b.Status == OrderBookStatus.Synced))
Trackers offer a way to keep track of live data. This data can than be aggregated into statistics and different time slices can be compared to get realtime insights. +
++ The basic workings of the trackers are simple, an initial request is made for a snapshot of the history (or a partial snapshot depending on what the API supports). At the same time a websocket subscription is set up to provide the tracker with new data.
Currently there are 2 different trackers available, the TradeTracker
and the KlineTracker
.