/// <summary>
 /// Iterates over order book history and loads new data using given history loader when needed.
 /// </summary>
 /// <param name="loader">Order book history loader which is then used to load historical data.</param>
 public HistoryEnumerator(BitstampHistoryLoader loader)
 {
     _loader = loader;
     _loader.RegisterHistoryProvider(this);
 }
예제 #2
0
 public HistoryQueue(BitstampHistoryLoader loader)
 {
     _loader = loader;
     _loader.RegisterHistoryProvider(this);
 }