8 lines
250 B
Batchfile
8 lines
250 B
Batchfile
|
|
@echo off
|
||
|
|
REM Backfill ExF NPZ files for all 1710 klines dates
|
||
|
|
REM Idempotent — safe to re-run if interrupted
|
||
|
|
REM ~2-5 hours total runtime
|
||
|
|
cd /d "%~dp0"
|
||
|
|
"C:\Users\Lenovo\Documents\- Siloqy\Scripts\python.exe" backfill_klines_exf.py %*
|
||
|
|
pause
|