Skip to content

Commit

Permalink
bitmex funding symbol fix
Browse files Browse the repository at this point in the history
  • Loading branch information
realiti4 committed Feb 5, 2024
1 parent c1d70e7 commit 991cd7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="tradingfeatures",
version="0.7.3",
version="0.7.4",
author="Onur Cetinkol",
author_email="realiti44@gmail.com",
description="A useful tool to download market history from popular exchanges.",
Expand Down
2 changes: 1 addition & 1 deletion tradingfeatures/apis/bitmex/funding.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def get(
def get_recent(self, df): # Recent Funding
address = "/instrument"
r_current = super(bitmexFunding, self).get(
address=address, query={"symbol": "XBT"}, return_r=True
address=address, query={"symbol": "XBTUSD"}, return_r=True
)
current_data = r_current.json()[0]

Expand Down

0 comments on commit 991cd7e

Please sign in to comment.