-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
27 lines (22 loc) · 1.01 KB
/
Copy pathrequirements.txt
File metadata and controls
27 lines (22 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Trading Bot Requirements
# Python 3.10+
# === Exchange API ===
ccxt>=4.4.0 # Unified exchange API (REST + WebSocket via ccxt.pro)
# Otomatis menginstall aiohttp sebagai dependency-nya.
#
# !! PENTING SETELAH INSTALL !!
# ccxt juga menginstall aiodns yang membreak DNS resolution di environment ini.
# Jalankan perintah ini setelah pip install -r requirements.txt:
# pip uninstall aiodns -y
# === Dashboard ===
streamlit>=1.32.0 # Monitoring dashboard
pandas>=2.0.0 # CSV loading + data manipulation
sortedcontainers>=2.4.0 # Optimized dictionary operations
streamlit-autorefresh==1.0.1 # Automatic dashboard refresh
# === Testing (opsional — hanya untuk dev) ===
pytest>=8.0.0 # Test runner
pytest-cov>=4.1.0 # Coverage reporting
pytest-asyncio>=0.23.0 # Test async functions
# === Standard library (no install needed) ===
# asyncio, json, csv, os, time, threading, queue, collections, logging, ssl
# (hmac, hashlib, uuid sudah tidak dipakai — digantikan CCXT)