|
Lean
$LEAN_TAG$
|
Base generic dynamic command class More...
Public Member Functions | |
| sealed override DynamicMetaObject | GetMetaObject (Expression parameter) |
| Get the metaObject required for Dynamism. More... | |
| object | SetProperty (string name, object value) |
| Sets the property with the specified name to the value. This is a case-insensitve search. More... | |
| object | GetProperty (string name) |
| Gets the property's value with the specified name. This is a case-insensitve search. More... | |
| virtual ? bool | Run (IAlgorithm algorithm) |
| Run this command using the target algorithm More... | |
| override string | ToString () |
| The string representation of this command More... | |
Properties | |
| string | PayloadData [get, set] |
| Useful to string representation in python More... | |
Base generic dynamic command class
Definition at line 32 of file Command.cs.
| sealed override DynamicMetaObject QuantConnect.Commands.Command.GetMetaObject | ( | Expression | parameter | ) |
Get the metaObject required for Dynamism.
Definition at line 47 of file Command.cs.
| object QuantConnect.Commands.Command.SetProperty | ( | string | name, |
| object | value | ||
| ) |
Sets the property with the specified name to the value. This is a case-insensitve search.
| name | The property name to set |
| value | The new property value |
Definition at line 58 of file Command.cs.
| object QuantConnect.Commands.Command.GetProperty | ( | string | name | ) |
Gets the property's value with the specified name. This is a case-insensitve search.
| name | The property name to access |
Definition at line 79 of file Command.cs.
|
virtual |
Run this command using the target algorithm
| algorithm | The algorithm instance |
Definition at line 107 of file Command.cs.
| override string QuantConnect.Commands.Command.ToString | ( | ) |
The string representation of this command
Definition at line 115 of file Command.cs.
|
getsetprotected |
Useful to string representation in python
Definition at line 42 of file Command.cs.