|
|
@@ -31,6 +31,9 @@
|
|
|
<lay-form-item label="最小量分数" prop="transactionVolumeScore">
|
|
|
<lay-input v-model="modelParams.transactionVolumeScore" placeholder="排行榜最小交易量分数最小值" />
|
|
|
</lay-form-item>
|
|
|
+ <lay-form-item label="最小开仓值" prop="minOpenLimit">
|
|
|
+ <lay-input v-model="modelParams.minOpenLimit" placeholder="最小开仓值" />
|
|
|
+ </lay-form-item>
|
|
|
<lay-form-item label="调参等级" prop="dataHourNum">
|
|
|
<lay-select v-model="modelParams.dataHourNum">
|
|
|
<lay-select-option :value="1" label="LV1(1小时)" />
|
|
|
@@ -68,6 +71,7 @@ interface ModelParams {
|
|
|
fluctuationScore?: string;
|
|
|
frequencyScore?: string;
|
|
|
transactionVolumeScore?: string;
|
|
|
+ minOpenLimit?: string;
|
|
|
dataHourNum?: number;
|
|
|
}
|
|
|
|
|
|
@@ -107,6 +111,7 @@ const operator = reactive([
|
|
|
fluctuationScore: modelParams.value.fluctuationScore,
|
|
|
frequencyScore: modelParams.value.frequencyScore,
|
|
|
transactionVolumeScore: modelParams.value.transactionVolumeScore,
|
|
|
+ minOpenLimit: modelParams.value.minOpenLimit,
|
|
|
dataHourNum: modelParams.value.dataHourNum,
|
|
|
};
|
|
|
set_robot_auto(params, (data: any) => {
|