Binance.get_order
You're seeing just the function
get_order
, go back to Binance module for more information.
Link to this function
get_order(symbol, timestamp, order_id \\ nil, orig_client_order_id \\ nil, recv_window \\ nil)
Get order by symbol, timestamp and either orderId or origClientOrderId are mandatory
Returns {:ok, [%Binance.Order{}]}
or {:error, reason}
.
Weight: 1
Example
{:ok, %Binance.Order{price: "0.1", origQty: "1.0", executedQty: "0.0", ...}}