Пример #1
0
        private static IReadOnlyDictionary <SecurityType, string> GetDefaultMarkets()
        {
            var map = DefaultMarketMap.ToDictionary();

            map[SecurityType.Crypto] = Market.Bitfinex;
            return(map.ToReadOnlyDictionary());
        }
Пример #2
0
        protected static IReadOnlyDictionary <SecurityType, string> GetDefaultMarkets(string market)
        {
            var map = DefaultMarketMap.ToDictionary();

            map[SecurityType.Crypto] = market;
            return(map.ToReadOnlyDictionary());
        }
Пример #3
0
        private static IReadOnlyDictionary <SecurityType, string> GetDefaultMarkets()
        {
            var map = DefaultMarketMap.ToDictionary();

            map[SecurityType.Equity] = Market.India;

            return(map.ToReadOnlyDictionary());
        }