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,