Lean  $LEAN_TAG$
QuantConnect.Python.BrokerageMessageHandlerPythonWrapper Class Reference

Provides a wrapper for IBrokerageMessageHandler implementations written in python More...

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

Public Member Functions

 BrokerageMessageHandlerPythonWrapper (PyObject model)
 Initializes a new instance of the BrokerageMessageHandlerPythonWrapper class More...
 
void HandleMessage (BrokerageMessageEvent message)
 Handles the message More...
 
bool HandleOrder (NewBrokerageOrderNotificationEventArgs eventArgs)
 Handles a new order placed manually in the brokerage side More...
 
- Public Member Functions inherited from QuantConnect.Python.BasePythonWrapper< IBrokerageMessageHandler >
 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...
 

Additional Inherited Members

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

Detailed Description

Provides a wrapper for IBrokerageMessageHandler implementations written in python

Definition at line 24 of file BrokerageMessageHandlerPythonWrapper.cs.

Constructor & Destructor Documentation

◆ BrokerageMessageHandlerPythonWrapper()

QuantConnect.Python.BrokerageMessageHandlerPythonWrapper.BrokerageMessageHandlerPythonWrapper ( PyObject  model)

Initializes a new instance of the BrokerageMessageHandlerPythonWrapper class

Parameters
modelThe python implementation of IBrokerageMessageHandler

Definition at line 30 of file BrokerageMessageHandlerPythonWrapper.cs.

Member Function Documentation

◆ HandleMessage()

void QuantConnect.Python.BrokerageMessageHandlerPythonWrapper.HandleMessage ( BrokerageMessageEvent  message)

Handles the message

Parameters
messageThe message to be handled

Implements QuantConnect.Brokerages.IBrokerageMessageHandler.

Definition at line 39 of file BrokerageMessageHandlerPythonWrapper.cs.

Here is the call graph for this function:

◆ HandleOrder()

bool QuantConnect.Python.BrokerageMessageHandlerPythonWrapper.HandleOrder ( NewBrokerageOrderNotificationEventArgs  eventArgs)

Handles a new order placed manually in the brokerage side

Parameters
eventArgsThe new order event
Returns
Whether the order should be added to the transaction handler

Implements QuantConnect.Brokerages.IBrokerageMessageHandler.

Definition at line 49 of file BrokerageMessageHandlerPythonWrapper.cs.


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