25 internal class SecurityIdentifierContext
32 public SecurityIdentifierContext(
MapFile mapFile,
string market)
36 MapFileRows =
MapFile.Select(mfr =>
new Tuple<DateTime, string>(mfr.Date, mfr.MappedSymbol)).ToArray();
37 Tickers =
MapFile.Select(mfr => mfr.MappedSymbol.ToLowerInvariant()).Distinct().ToArray();
38 LastTicker =
MapFile.Last().MappedSymbol.ToLowerInvariant();
47 public SecurityIdentifier SID {
get; }
63 public Tuple<DateTime, string>[] MapFileRows {
get; }
71 public string[] Tickers {
get; }
79 public string LastTicker {
get; }