Lean
$LEAN_TAG$
|
Provides a means of mapping a symbol at a point in time to the map file containing that share class's mapping information More...
Public Member Functions | |
MapFileResolver (IEnumerable< MapFile > mapFiles) | |
Initializes a new instance of the MapFileResolver by reading in all files in the specified directory. More... | |
MapFile | GetByPermtick (string permtick) |
Gets the map file matching the specified permtick More... | |
MapFile | ResolveMapFile (string symbol, DateTime date) |
Resolves the map file path containing the mapping information for the symbol defined at date More... | |
IEnumerator< MapFile > | GetEnumerator () |
Returns an enumerator that iterates through the collection. More... | |
Static Public Attributes | |
static readonly MapFileResolver | Empty = new MapFileResolver(Enumerable.Empty<MapFile>()) |
Gets an empty MapFileResolver, that is an instance that contains zero mappings More... | |
Provides a means of mapping a symbol at a point in time to the map file containing that share class's mapping information
Definition at line 32 of file MapFileResolver.cs.
QuantConnect.Data.Auxiliary.MapFileResolver.MapFileResolver | ( | IEnumerable< MapFile > | mapFiles | ) |
Initializes a new instance of the MapFileResolver by reading in all files in the specified directory.
mapFiles | The data used to initialize this resolver. |
Definition at line 48 of file MapFileResolver.cs.
MapFile QuantConnect.Data.Auxiliary.MapFileResolver.GetByPermtick | ( | string | permtick | ) |
Gets the map file matching the specified permtick
permtick | The permtick to match on |
Definition at line 90 of file MapFileResolver.cs.
MapFile QuantConnect.Data.Auxiliary.MapFileResolver.ResolveMapFile | ( | string | symbol, |
DateTime | date | ||
) |
Resolves the map file path containing the mapping information for the symbol defined at date
symbol | The symbol as of date to be mapped |
date | The date associated with the symbol |
Definition at line 103 of file MapFileResolver.cs.
IEnumerator<MapFile> QuantConnect.Data.Auxiliary.MapFileResolver.GetEnumerator | ( | ) |
Returns an enumerator that iterates through the collection.
<filterpriority>1</filterpriority>
Definition at line 211 of file MapFileResolver.cs.
|
static |
Gets an empty MapFileResolver, that is an instance that contains zero mappings
Definition at line 41 of file MapFileResolver.cs.