@evatick/skill 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +3 -3
- package/skill/eva/SKILL.md +1 -1
- package/skill/eva/references/command-guide.md +6 -4
package/README.md
CHANGED
|
@@ -54,8 +54,8 @@ routing, fallback, retries, normalization, and catalog persistence.
|
|
|
54
54
|
- Treats market data as research and reference material, not investment advice.
|
|
55
55
|
|
|
56
56
|
The current service contract covers mainland China A-shares, Chinese indices,
|
|
57
|
-
official CFFEX, SHFE, INE, and
|
|
58
|
-
Coinbase cryptocurrency market data. Futures support unadjusted daily bars.
|
|
57
|
+
official CFFEX, SHFE, INE, CZCE, DCE, and GFEX futures, and exchange-scoped
|
|
58
|
+
Binance and Coinbase cryptocurrency market data. Futures support unadjusted daily bars.
|
|
59
59
|
Cryptocurrency commands require an explicit venue. Availability depends on the
|
|
60
60
|
configured service and its enabled providers.
|
|
61
61
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evatick/skill",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "Codex Skill for
|
|
3
|
+
"version": "0.4.3",
|
|
4
|
+
"description": "Codex Skill for querying A-share, Chinese index, mainland futures, and exchange-scoped crypto market data through EVA Tick",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"automation"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@evatick/cli": "0.4.
|
|
36
|
+
"@evatick/cli": "0.4.3"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
package/skill/eva/SKILL.md
CHANGED
|
@@ -31,7 +31,7 @@ v1 command tree, output options, configuration, and error handling.
|
|
|
31
31
|
- Do not add `--overwrite` without user authorization.
|
|
32
32
|
- Never expose API keys from environment variables or configuration files.
|
|
33
33
|
- Let the EVA service handle provider routing. Report retryable service failures instead of calling providers directly.
|
|
34
|
-
- Futures support unadjusted daily bars from CFFEX, SHFE, INE, and
|
|
34
|
+
- Futures support unadjusted daily bars from CFFEX, SHFE, INE, CZCE, DCE, and GFEX. Do not invent unsupported commands for funds, options, bonds, FX, macro data, calendars, or alternative data.
|
|
35
35
|
|
|
36
36
|
## Quick sequence
|
|
37
37
|
|
|
@@ -46,12 +46,14 @@ eva crypto bars --symbol SYMBOL_OR_ID --venue BINANCE|COINBASE [--interval INTER
|
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
Supported bar intervals are `1m`, `5m`, `15m`, `30m`, `60m`, `1d`, `1w`, and
|
|
49
|
-
`1mo`. Stock bars
|
|
50
|
-
|
|
51
|
-
|
|
49
|
+
`1mo`. Stock bars use forward adjustment by default. Pass `--adjustment none`
|
|
50
|
+
for raw prices or `--adjustment backward` for backward-adjusted prices.
|
|
51
|
+
`--as-of` selects the forward-adjustment anchor date; indices and
|
|
52
|
+
cryptocurrencies only support unadjusted bars. Coinbase supports `1m`, `5m`,
|
|
53
|
+
`15m`, `60m`, and `1d`; Binance
|
|
52
54
|
supports every listed interval. Cryptocurrency commands require an exchange
|
|
53
55
|
venue and never fall back to the other exchange. Chinese futures use official
|
|
54
|
-
CFFEX, SHFE, INE, and
|
|
56
|
+
CFFEX, SHFE, INE, CZCE, DCE, and GFEX sources and support unadjusted daily bars.
|
|
55
57
|
|
|
56
58
|
## Results and files
|
|
57
59
|
|