changedInput schema / $schema
Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
removedInput schema / properties / deviationMultiplier / description
Removed value: -"BBands 标准差倍数"
addedInput schema / properties / deviationMultiplier / maximum
Added value: +10
addedInput schema / properties / interval
Added value: +{
+ "enum": [
+ "1m",
+ "3m",
+ "5m",
+ "15m",
+ "30m",
+ "1h",
+ "2h",
+ "4h",
+ "6h",
+ "8h",
+ "12h",
+ "1d",
+ "3d",
+ "1w",
+ "1M"
+ ],
+ "type": "string"
+}
addedInput schema / properties / limit
Added value: +{
+ "default": 200,
+ "maximum": 1500,
+ "minimum": 2,
+ "type": "integer"
+}
removedInput schema / properties / period / description
Removed value: -"BBands 周期"
changedInput schema / properties / period / maximum
Previous value: -9007199254740991New value: +250
removedInput schema / properties / rsiPeriod / description
Removed value: -"RSI 周期"
changedInput schema / properties / rsiPeriod / maximum
Previous value: -9007199254740991New value: +250
addedInput schema / properties / symbol
Added value: +{
+ "type": "string"
+}
removedInput schema / properties / values
Removed value: -{
- "description": "价格序列(收盘价)",
- "items": {
- "type": "number"
- },
- "minItems": 1,
- "type": "array"
-}
changedInput schema / required
Previous value: -[
- "values"
-]New value: +[
+ "symbol",
+ "interval"
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "lower": {
+ "type": "number"
+ },
+ "middle": {
+ "type": "number"
+ },
+ "percentB": {
+ "type": "number"
+ },
+ "rsi": {
+ "type": "number"
+ },
+ "upper": {
+ "type": "number"
+ },
+ "zone": {
+ "enum": [
+ "above",
+ "upper_half",
+ "lower_half",
+ "below"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "upper",
+ "middle",
+ "lower",
+ "percentB",
+ "zone",
+ "rsi"
+ ],
+ "type": "object"
+}