OrdersClient class

A Client that helps manage orders and returns coinbase_exchange objects

Constructors

OrdersClient({bool sandbox = false, required String apiKey, required String secretKey, required String passphrase})

Properties

apiKey String
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
passphrase String
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sandbox bool
getter/setter pair
secretKey String
getter/setter pair

Methods

cancelAllOrders({String? profileId, String? productId}) Future<List>
Cancel all orders
cancelOrder({required String orderId, String? profileId}) Future<String>
Cancel an order
createNewOrder({String? profileId, String? type, required String? side, required String? productId, String? stp, String? stop, double? stopPrice, double? price, double? size, double? funds, String? timeInForce, String? cancelAfter, bool? postOnly, String? clientOid}) Future<Order>
Create a new order
getAllFills({String? orderId, String? productId, String? profileId, int? limit, int? before, int? after}) Future<List<Fill>>
Get all fills
getAllOrders({String? profileId, String? productId, String? sortedBy, String? sorting, DateTime? startDate, DateTime? endDate, String? before, String? after, required int limit, required List<String> status}) Future<List<Order>>
Get all orders
getSingleOrder({String? orderId}) Future<Order>
Get single order
listDecode(String body) List<Map<String, dynamic>>
inherited
mapDecode(String body) Map<String, dynamic>
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited