Use exchange method to combine funding and mark candles

This commit is contained in:
Matthias 2022-05-21 08:31:34 +02:00
parent 0e158b66b0
commit 6bd5535d6c
2 changed files with 5 additions and 4 deletions

View File

@ -2420,7 +2420,7 @@ class Exchange:
:param mark_rates: Dataframe containing Mark rates (Type mark_ohlcv_price)
"""
return funding_rates.merge(mark_rates, on='date', how="inner", suffixes=["_fund", "_mark"])
return mark_rates.merge(funding_rates, on='date', how="inner", suffixes=["_mark", "_fund"])
def calculate_funding_fees(
self,

View File

@ -296,9 +296,10 @@ class Backtesting:
how="outer", suffixes=["_mark", "_fund"])['open_fund'].fillna(
self.config.get('futures_funding_rate'))
else:
self.futures_data[pair] = mark_rates_dict[pair].merge(
funding_rates_dict[pair], on='date',
how="inner", suffixes=["_mark", "_fund"])
self.futures_data[pair] = self.exchange.combine_funding_and_mark(
funding_rates=funding_rates_dict[pair],
mark_rates=mark_rates_dict[pair]
)
if unavailable_pairs:
raise OperationalException(