コード例 #1
0
 public OrdersData(BitfinexApi api)
 {
     m_api  = api;
     m_data = new Dictionary <ulong, Order>();
 }
コード例 #2
0
 public WalletData(BitfinexApi api)
 {
     m_api  = api;
     m_data = new Dictionary <string, Balance>();
 }
コード例 #3
0
 public SubscriptionContainer(BitfinexApi api)
 {
     Api    = api;
     Subs   = new HashSet <Subscription>();
     Active = new Dictionary <int, Subscription>();
 }
コード例 #4
0
 public ChartData(BitfinexApi api)
 {
     m_api  = api;
     m_data = new PairToTimeFrames();
 }
コード例 #5
0
 public MarketData(BitfinexApi api)
 {
     m_api  = api;
     m_data = new Dictionary <CurrencyPair, OrderBook>();
 }
コード例 #6
0
 public HistoryData(BitfinexApi api)
 {
     m_api  = api;
     m_data = new Dictionary <ulong, Trade>();
 }