Merge pull request #5648 from froggleston/patch-1

Fix pair_candles to point to correct API call
This commit is contained in:
Matthias 2021-10-01 19:25:22 +02:00 committed by GitHub
commit bd7d9c0d33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -312,7 +312,7 @@ class FtRestClient():
:param limit: Limit result to the last n candles.
:return: json object
"""
return self._get("available_pairs", params={
return self._get("pair_candles", params={
"pair": pair,
"timeframe": timeframe,
"limit": limit,