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 / interval / description
Removed value: -"计算周期"
addedInput schema / properties / interval / enum
Added value: +[
+ "1m",
+ "3m",
+ "5m",
+ "15m",
+ "30m",
+ "1h",
+ "2h",
+ "4h",
+ "6h",
+ "8h",
+ "12h",
+ "1d",
+ "3d",
+ "1w",
+ "1M"
+]
removedInput schema / properties / interval / maximum
Removed value: -9007199254740991
removedInput schema / properties / interval / minimum
Removed value: -2
changedInput schema / properties / interval / type
Previous value: -"integer"New value: +"string"
addedInput schema / properties / limit
Added value: +{
+ "default": 200,
+ "maximum": 1500,
+ "minimum": 2,
+ "type": "integer"
+}
addedInput schema / properties / period
Added value: +{
+ "default": 14,
+ "maximum": 250,
+ "minimum": 2,
+ "type": "integer"
+}
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",
- "interval"
-]New value: +[
+ "symbol",
+ "interval"
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "items": {
+ "type": "number"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "data"
+ ],
+ "type": "object"
+}