15 lines
443 B
Bash
15 lines
443 B
Bash
#!/bin/bash
|
||
|
||
# 正确的hyperopt命令(使用hyperopt_org.sh脚本)
|
||
cd /Users/zhangkun/myTestFreqAI
|
||
|
||
# 使用命名参数模式执行hyperopt_org.sh
|
||
./tools/hyperopt_org.sh \
|
||
--start-date="2025-04-25 00:00:00" \
|
||
--end-date="2025-09-25 23:59:59" \
|
||
--strategy="FreqaiPrimer" \
|
||
--space="buy" \
|
||
--epochs=2
|
||
|
||
# 或者使用位置参数模式
|
||
# ./tools/hyperopt_org.sh "2025-04-25 00:00:00" "2025-09-25 23:59:59" "FreqaiPrimer" "" "buy" |