옵투나 8방 후처리를 재탐색으로 변경하기 전전

This commit is contained in:
Your Name
2026-08-23 17:51:29 +09:00
parent 3eaa3b61df
commit ba2f9f0953
58 changed files with 25306 additions and 344 deletions

View File

@@ -257,7 +257,7 @@ def start_bt_job(
universe_history_source: Optional[str] = None,
tick_db: Optional[bool] = None,
tick_exit: Optional[bool] = None,
orderbook_filter: str = "off",
orderbook_filter: str = "auto",
params_json: Optional[str] = None,
env_timeline: bool = False,
) -> Dict[str, Any]:
@@ -312,7 +312,7 @@ def start_bt_job(
"--job-id", job_id,
"--out-dir", str(RESULTS_DIR),
"--progress-file", str(progress_file),
"--orderbook-filter", str(orderbook_filter or "off"),
"--orderbook-filter", str(orderbook_filter or "auto"),
]
if tick_db is not None:
cmd.extend(["--tick-db", "1" if tick_db else "0"])
@@ -336,7 +336,7 @@ def start_bt_job(
"--job-id", job_id,
"--out-dir", str(RESULTS_DIR),
"--progress-file", str(progress_file),
"--orderbook-filter", str(orderbook_filter or "off"),
"--orderbook-filter", str(orderbook_filter or "auto"),
]
if timeframe is not None:
cmd.extend(["--timeframe", str(int(timeframe))])