You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
order = client.create_order('EOSETH', 'buy', '10', order_type=args.ORDER_TYPE.MARKET)
51
+
# create a new spot order
52
+
order = client.create_spot_order('EOSETH', Side.BUY, '10', type=OrderType.MARKET)
52
53
```
53
54
54
55
## Websocket Clients
55
56
56
-
there are three websocket clients, `MarketDataClient`, the `SpotTradingClient` and the `WalletManagementClient`. The `MarketDataClient` is public, while the others require authentication to be used.
57
+
there are three websocket clients, `MarketDataClient`, the `TradingClient` and the `WalletClient`. The `MarketDataClient` is public, while the others require authentication to be used.
57
58
58
59
Some subscription callbacks take a second argument, indicating the type of notification, either 'snapshsot' or 'update'.
0 commit comments