|
@@ -1494,6 +1494,7 @@ type SeasonRightAxis struct {
|
|
|
LineWidth int `description:"线条宽度"`
|
|
|
LineStyle string `description:"线条样式"`
|
|
|
IsShow bool `description:"是否显示"`
|
|
|
+ IsAdd bool `description:"是否添加"`
|
|
|
}
|
|
|
|
|
|
// 自定义同期上下限
|
|
@@ -1502,6 +1503,7 @@ type MaxMinLimits struct {
|
|
|
Year int `description:"上下限取值范围"`
|
|
|
Legend string `description:"图例名称"`
|
|
|
IsShow bool `description:"是否显示"`
|
|
|
+ IsAdd bool `description:"是否添加"`
|
|
|
}
|
|
|
|
|
|
// 自定义同期均线
|
|
@@ -1512,6 +1514,7 @@ type SamePeriodAverage struct {
|
|
|
LineType string `description:"线型"`
|
|
|
LineWidth int `description:"线宽"`
|
|
|
IsShow bool `description:"是否显示"`
|
|
|
+ IsAdd bool `description:"是否添加"`
|
|
|
}
|
|
|
|
|
|
// 自定义同期均线
|
|
@@ -1523,6 +1526,7 @@ type SamePeriodAverageResp struct {
|
|
|
LineWidth int `description:"线宽"`
|
|
|
IsShow bool `description:"是否显示"`
|
|
|
List []*SamePeriodAverageData `description:"自定义均线列表"`
|
|
|
+ IsAdd bool `description:"是否添加"`
|
|
|
}
|
|
|
|
|
|
type SamePeriodAverageData struct {
|
|
@@ -1538,6 +1542,7 @@ type SamePeriodStandardDeviation struct {
|
|
|
Legend string `description:"图例名称"`
|
|
|
Multiple float64 `description:"标准差倍数"`
|
|
|
IsShow bool `description:"是否显示"`
|
|
|
+ IsAdd bool `description:"是否添加"`
|
|
|
}
|
|
|
|
|
|
type SamePeriodStandardDeviationResp struct {
|
|
@@ -1547,6 +1552,7 @@ type SamePeriodStandardDeviationResp struct {
|
|
|
Multiple float64 `description:"标准差倍数"`
|
|
|
IsShow bool `description:"是否显示"`
|
|
|
List []*MaxMinLimitsData `description:"自定义标准差列表"`
|
|
|
+ IsAdd bool `description:"是否添加"`
|
|
|
}
|
|
|
|
|
|
type SeasonChartResp struct {
|
|
@@ -1559,7 +1565,7 @@ type SeasonChartResp struct {
|
|
|
// 自定义右轴指标
|
|
|
type SeasonRightAxisResp struct {
|
|
|
SeasonRightAxis
|
|
|
- EdbInfoList []*ChartEdbInfoMapping
|
|
|
+ EdbInfoList []*ChartEdbInfoMapping
|
|
|
}
|
|
|
|
|
|
type MaxMinLimitsResp struct {
|
|
@@ -1568,6 +1574,7 @@ type MaxMinLimitsResp struct {
|
|
|
Value int `description:"上下限取值范围"`
|
|
|
Legend string `description:"图例名称"`
|
|
|
IsShow bool `description:"是否显示"`
|
|
|
+ IsAdd bool `description:"是否添加"`
|
|
|
}
|
|
|
|
|
|
type MaxMinLimitsData struct {
|