ExecutionReport
Path in Local Pack include/execution_report.h
Report on a deal with your order.
Methods
Name | Description |
---|---|
order() | A pointer to your executed order. |
price() | Deal price. |
amount() | Deal volume. |
dir() | Your executed order direction. |
Methods description
order()
Returns a pointer to your order, that was matched in the deal.
C++
Python
Order* order() const;
def order(self)
price()
Returns a price of the deal.
C++
Python
Price price() const;
def price(self)
amount()
Returns a volume of the deal.
C++
Python
Amount amount() const;
def amount(self)
dir()
Returns a direction of your executed order.
C++
Python
Dir dir() const;
def dir(self)