Exemplo n.º 1
0
            public override Entry GetEntry(string market, string symbol, SecurityType securityType, DateTimeZone overrideTimeZone = null)
            {
                var tz = overrideTimeZone ?? TimeZones.Utc;

                return(new Entry(tz, SecurityExchangeHours.AlwaysOpen(tz)));
            }
Exemplo n.º 2
0
 public Entry(DateTimeZone dataTimeZone, SecurityExchangeHours exchangeHours)
 {
     DataTimeZone  = dataTimeZone;
     ExchangeHours = exchangeHours;
 }