Add some documentation to class

This commit is contained in:
Matthias 2021-11-11 20:34:45 +01:00
parent 68083b7fdd
commit 76ced8acf6

View File

@ -1747,13 +1747,11 @@ class Exchange:
raise OperationalException(e) from e raise OperationalException(e) from e
@retrier @retrier
def _get_mark_price_history( def _get_mark_price_history(self, pair: str, since: int) -> Dict:
self,
pair: str,
since: int
) -> Dict:
""" """
Get's the mark price history for a pair Get's the mark price history for a pair
:param pair: The quote/base pair of the trade
:param since: The earliest time to start downloading candles, in ms.
""" """
try: try:
@ -1803,6 +1801,7 @@ class Exchange:
) -> float: ) -> float:
""" """
calculates the sum of all funding fees that occurred for a pair during a futures trade calculates the sum of all funding fees that occurred for a pair during a futures trade
Only used during dry-run or if the exchange does not provide a funding_rates endpoint.
:param pair: The quote/base pair of the trade :param pair: The quote/base pair of the trade
:param amount: The quantity of the trade :param amount: The quantity of the trade
:param open_date: The date and time that the trade started :param open_date: The date and time that the trade started