|
Crypto backtesting
|
Variables | |
| api_key = os.getenv('COINBASE_API_KEY') | |
| api_secret = os.getenv('COINBASE_API_SECRET') | |
| client = Client(api_key, api_secret) | |
| accounts = client.get_accounts() | |
| transactions = client.get_transactions(account['id']) | |
| cb.client = Client(api_key, api_secret) |