Add performance handlers

This commit is contained in:
Matthias
2019-04-26 10:03:54 +02:00
parent 393e4ac90e
commit b1964851c9
2 changed files with 24 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ class FtRestClient():
# Split url
schema, netloc, path, par, query, fragment = urlparse(basepath)
# URLEncode query string
query = urlencode(params) if params else None
query = urlencode(params) if params else ""
# recombine url
url = urlunparse((schema, netloc, path, par, query, fragment))
@@ -92,6 +92,13 @@ class FtRestClient():
"""
return self._get("profit")
def performance(self):
"""
Returns the performance of the different coins
:returns: json object
"""
return self._get("performance")
def status(self):
"""
Get the status of open trades