옵투나 8방 후처리를 재탐색으로 변경하기 전전
This commit is contained in:
@@ -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))])
|
||||
|
||||
Reference in New Issue
Block a user