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 / fast / description
Removed value: -"快线周期"
changedInput schema / properties / fast / maximum
Previous value: -9007199254740991New value: +250
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 / slow / description
Removed value: -"慢线周期"
changedInput schema / properties / slow / maximum
Previous value: -9007199254740991New value: +250
addedInput schema / properties / symbol
Added value: +{
+ "type": "string"
+}
changedInput schema / properties / type / description
Previous value: -"平滑类型"New value: +"均线类型"
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": {
+ "bias": {
+ "enum": [
+ "bullish",
+ "bearish",
+ "neutral"
+ ],
+ "type": "string"
+ },
+ "cross": {
+ "enum": [
+ "golden_cross",
+ "death_cross",
+ "none"
+ ],
+ "type": "string"
+ },
+ "fast": {
+ "type": "number"
+ },
+ "slow": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "cross",
+ "bias",
+ "fast",
+ "slow"
+ ],
+ "type": "object"
+}