- Add db.py PostgreSQL abstraction layer (connection, upsert, table mgmt) - Replace sqlite3 with psycopg2 in: live_candle_fetcher, resampler, data_fetcher, fetch_history, import_csv, indicators, base_strategy - Sanitize table names (colons -> underscores) for PostgreSQL compat - Replace INSERT OR REPLACE with ON CONFLICT upserts - Replace pandas to_sql() with batch upsert_candles() - Add scripts: resampler_loop, gap_detector, backup_runner, cron_scheduler - Add migrate_sqlite_to_pg.py for one-time data migration - Add Dockerfile, docker-compose.yml, supervisord.conf - Add postgres/postgresql.conf tuned for 4GB RAM (Synology DS1513+) - Add .dockerignore, .env.docker.example, secrets template - Update requirements.txt (psycopg2-binary), .gitignore - Add MIGRATION_PLAN.md with full plan and todo list
57 lines
1021 B
Plaintext
57 lines
1021 B
Plaintext
aiodns==3.5.0
|
|
aiohappyeyeballs==2.6.1
|
|
aiohttp==3.10.11
|
|
aiosignal==1.4.0
|
|
annotated-types==0.7.0
|
|
async-timeout==5.0.1
|
|
attrs==25.4.0
|
|
bitarray==3.8.0
|
|
certifi==2025.10.5
|
|
cffi==2.0.0
|
|
charset-normalizer==3.4.4
|
|
ckzg==2.1.5
|
|
cryptography==46.0.3
|
|
cytoolz==1.1.0
|
|
eth-account==0.13.7
|
|
eth-hash==0.7.1
|
|
eth-keyfile==0.8.1
|
|
eth-keys==0.7.0
|
|
eth-rlp==2.2.0
|
|
eth-typing==5.2.1
|
|
eth-utils==5.3.1
|
|
eth_abi==5.2.0
|
|
frozenlist==1.8.0
|
|
hexbytes==1.3.1
|
|
hyperliquid==0.4.66
|
|
hyperliquid-python-sdk>=0.24.0
|
|
idna==3.11
|
|
msgpack==1.1.2
|
|
multidict==6.7.0
|
|
numpy==2.0.2
|
|
pandas==2.3.3
|
|
parsimonious==0.10.0
|
|
propcache==0.4.1
|
|
pycares==4.11.0
|
|
pycparser==2.23
|
|
pycryptodome==3.23.0
|
|
pydantic==2.12.4
|
|
pydantic_core==2.41.5
|
|
python-dateutil==2.9.0.post0
|
|
python-dotenv==1.2.1
|
|
pytz==2025.2
|
|
rich==13.9.4
|
|
regex==2025.11.3
|
|
requests==2.32.5
|
|
rlp==4.1.0
|
|
schedule==1.2.2
|
|
six==1.17.0
|
|
toolz==1.1.0
|
|
typing-inspection==0.4.2
|
|
typing_extensions==4.15.0
|
|
tzdata==2025.2
|
|
urllib3==1.26.20
|
|
websocket-client==1.9.0
|
|
web3~=6.0.0 # This means >=6.0.0 and <7.0.0
|
|
yarl==1.22.0
|
|
psycopg2-binary==2.9.9
|