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
:param callback: A callable to call with each update of the result data. It takes one argument, the balance feed.
215
+
:param result_callback: A callable to call with the subscription result. It takes two arguments, err and result. err is None for successful calls, result is None for calls with error: callback(err, result).
216
+
217
+
:returns: A transaction of the account as feed for the callback.
:param callback: Optional. A callable to call with the result data. It takes two arguments, err and result. err is None for successful calls, result is None for calls with error: callback(err, result).
239
+
240
+
:returns: The operation result as result argument for the callback. True if success.
@@ -13,9 +11,43 @@ class PublicClient(ClientBase):
13
11
:param callback: A callable to call with the client once the connection is established. if an error ocurrs is return as the fist parameter of the callback: callback(err, client)
"""TradingClient connects via websocket to cryptomarket to enable the user to manage orders. uses SHA256 as auth method and authenticates automatically.
9
8
@@ -13,22 +12,43 @@ class TradingClient(ClientAuth):
13
12
:param on_error: function called on a websocket error, and called in an authenticated error. it takes one parameter, the error.
14
13
:param on_close: function called on the closing event of the websocket. no parameters
0 commit comments