Exemple #1
0
        public CBaseStockBox(IClientStockBox client, int stockDepth)
        {
            _client = client;


            m_logger = new CLogger("Stockbox");
        }
 public CStockBoxCrypto(IClientStockBox client, int stockDepth, IClientStockConverterCrypto clientStockConverterCrypto) : base(client, stockDepth)
 {
     CreateStockConverters(stockDepth, clientStockConverterCrypto);
 }
Exemple #3
0
 public CStockBoxASTS(IClientStockBox client, int stockDepth)
     : base(client, stockDepth)
 {
     CreateStocksStructDict(stockDepth);
 }