BBSTRADER 2.4.0
Loading...
Searching...
No Matches
Order Management Callbacks

Functional interfaces for retrieving trade order data. More...

Typedefs

using MT5::GetOrdersAll = std::function< OrdersData()>
 Callback to retrieve all current trade orders.
 
using MT5::GetOrdersBySymbol = std::function< OrdersData(str &)>
 Callback to retrieve trade orders filtered by symbol.
 
using MT5::GetOrdersByGroup = std::function< OrdersData(str &)>
 Callback to retrieve trade orders filtered by a specific group.
 
using MT5::GetOrderByTicket = std::function< std::optional< TradeOrder >(uint64_t)>
 Callback to retrieve a specific order by its unique ticket ID.
 
using MT5::GetTotalOrders = std::function< std::optional< int32_t >()>
 Callback to retrieve the total count of active orders.
 

Detailed Description

Functional interfaces for retrieving trade order data.