Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # %% | |
| import ccxt | |
| import pandas as pd | |
| import numpy as np | |
| import cvxpy as cvx | |
| import matplotlib.pyplot as plt | |
| from tqdm import tqdm | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from enum import IntEnum | |
| class Exchange(IntEnum): | |
| Binance = 0 | |
| Bybit = 1 | |
| Okx = 2 | |
| class Currency(IntEnum): | |
| BTC = 0 | |
| ETH = 0 |