Lean
$LEAN_TAG$
|
Provides extension methods for the Universe class More...
Static Public Member Functions | |
static Universe | ChainedTo (this Universe first, Universe second, bool configurationPerSymbol) |
Creates a new universe that logically is the result of wiring the two universes together such that the first will produce subscriptions for the second and the second will only select on data that has passed the first. More... | |
static Universe | PrefilterUsing (this Universe second, Universe first) |
Creates a new universe that restricts the universe selection data to symbols that passed the first universe's selection critera More... | |
static Symbol | CreateSymbol (SecurityType securityType, string market, string ticker) |
Creates a universe symbol More... | |
Provides extension methods for the Universe class
Definition at line 24 of file UniverseExtensions.cs.
|
static |
Creates a new universe that logically is the result of wiring the two universes together such that the first will produce subscriptions for the second and the second will only select on data that has passed the first.
NOTE: The first and second universe instances provided to this method should not be manually added to the algorithm.
first | The first universe in this 'chain' |
second | The second universe in this 'chain' |
configurationPerSymbol | True if each symbol as its own configuration, false otherwise |
Definition at line 39 of file UniverseExtensions.cs.
|
static |
Creates a new universe that restricts the universe selection data to symbols that passed the first universe's selection critera
NOTE: The second universe instance provided to this method should not be manually added to the algorithm. The first should still be manually (assuming no other changes).
second | The universe to be filtere |
first | The universe providing the set of symbols used for filtered |
Definition at line 67 of file UniverseExtensions.cs.
|
static |
Creates a universe symbol
securityType | The security |
market | The market |
ticker | The Universe ticker |
Definition at line 84 of file UniverseExtensions.cs.