Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Gateio] update broker id #63

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ pur
pylint

ccxt==4.3.56 # use to run test using a specific version of ccxt

# async http requests
# avoid v3.10.0 as it is failing CI (<class 'RuntimeError'>: aiodns needs a SelectorEventLoop on Windows. See more: https://github.com/saghul/aiodns/issues/86)
aiohttp==3.9.5
6 changes: 3 additions & 3 deletions trading_backend/exchanges/gateio.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@


class GateIO(exchanges.Exchange):
SPOT_ID = "Octobot"
MARGIN_ID = "Octobot"
FUTURE_ID = "Octobot"
SPOT_ID = "octobotclo" # previous: "Octobot"
MARGIN_ID = "octobotclo" # previous: "Octobot"
FUTURE_ID = "octobotclo" # previous: "Octobot"
IS_SPONSORING = True
HEADER_KEY = "X-Gate-Channel-Id"

Expand Down
Loading