Lean  $LEAN_TAG$
QuantConnect.Python.RiskFreeInterestRateModelPythonWrapper Class Reference

Wraps a PyObject object that represents a risk-free interest rate model More...

Inheritance diagram for QuantConnect.Python.RiskFreeInterestRateModelPythonWrapper:
[legend]

Public Member Functions

 RiskFreeInterestRateModelPythonWrapper (PyObject model)
 Constructor for initializing the RiskFreeInterestRateModelPythonWrapper class with wrapped PyObject object More...
 
decimal GetInterestRate (DateTime date)
 Get interest rate by a given date More...
 
- Public Member Functions inherited from QuantConnect.Python.BasePythonWrapper< IRiskFreeInterestRateModel >
 BasePythonWrapper (bool validateInterface=true)
 Creates a new instance of the BasePythonWrapper<TInterface> class More...
 
 BasePythonWrapper (PyObject instance, bool validateInterface=true)
 Creates a new instance of the BasePythonWrapper<TInterface> class with the specified instance More...
 
void SetPythonInstance (PyObject instance)
 Sets the python instance More...
 
GetProperty< T > (string propertyName)
 Gets the Python instance property with the specified name More...
 
PyObject GetProperty (string propertyName)
 Gets the Python instance property with the specified name More...
 
void SetProperty (string propertyName, object value)
 Sets the Python instance property with the specified name More...
 
dynamic GetEvent (string name)
 Gets the Python instance event with the specified name More...
 
bool HasAttr (string name)
 Determines whether the Python instance has the specified attribute More...
 
PyObject GetMethod (string methodName)
 Gets the Python instances method with the specified name and caches it More...
 
InvokeMethod< T > (string methodName, params object[] args)
 Invokes the specified method with the specified arguments More...
 
PyObject InvokeMethod (string methodName, params object[] args)
 Invokes the specified method with the specified arguments More...
 

Static Public Member Functions

static IRiskFreeInterestRateModel FromPyObject (PyObject model)
 Converts a PyObject object into a IRiskFreeInterestRateModel object, wrapping it if necessary More...
 

Additional Inherited Members

- Protected Attributes inherited from QuantConnect.Python.BasePythonWrapper< IRiskFreeInterestRateModel >
PyObject Instance
 Gets the underlying python instance More...
 

Detailed Description

Wraps a PyObject object that represents a risk-free interest rate model

Definition at line 25 of file RiskFreeInterestRateModelPythonWrapper.cs.

Constructor & Destructor Documentation

◆ RiskFreeInterestRateModelPythonWrapper()

QuantConnect.Python.RiskFreeInterestRateModelPythonWrapper.RiskFreeInterestRateModelPythonWrapper ( PyObject  model)

Constructor for initializing the RiskFreeInterestRateModelPythonWrapper class with wrapped PyObject object

Parameters
modelRepresents a security's model of buying power

Definition at line 31 of file RiskFreeInterestRateModelPythonWrapper.cs.

Here is the caller graph for this function:

Member Function Documentation

◆ GetInterestRate()

decimal QuantConnect.Python.RiskFreeInterestRateModelPythonWrapper.GetInterestRate ( DateTime  date)

Get interest rate by a given date

Parameters
dateThe date
Returns
Interest rate on the given date

Implements QuantConnect.Data.IRiskFreeInterestRateModel.

Definition at line 41 of file RiskFreeInterestRateModelPythonWrapper.cs.

◆ FromPyObject()

static IRiskFreeInterestRateModel QuantConnect.Python.RiskFreeInterestRateModelPythonWrapper.FromPyObject ( PyObject  model)
static

Converts a PyObject object into a IRiskFreeInterestRateModel object, wrapping it if necessary

Parameters
modelThe Python model
Returns
The converted IRiskFreeInterestRateModel instance

Definition at line 51 of file RiskFreeInterestRateModelPythonWrapper.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

The documentation for this class was generated from the following file: