Esempio n. 1
0
        private static IReadOnlyDictionary <SecurityType, string> GetDefaultMarkets()
        {
            var map = DefaultMarketMap.ToDictionary();

            map[SecurityType.Crypto] = Market.Bitfinex;
            return(map.ToReadOnlyDictionary());
        }
Esempio n. 2
0
        protected static IReadOnlyDictionary <SecurityType, string> GetDefaultMarkets(string market)
        {
            var map = DefaultMarketMap.ToDictionary();

            map[SecurityType.Crypto] = market;
            return(map.ToReadOnlyDictionary());
        }
Esempio n. 3
0
        private static IReadOnlyDictionary <SecurityType, string> GetDefaultMarkets()
        {
            var map = DefaultMarketMap.ToDictionary();

            map[SecurityType.Equity] = Market.India;

            return(map.ToReadOnlyDictionary());
        }