@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 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 CZCE futures, and exchange-scoped Binance 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.2",
4
- "description": "Codex Skill for discovering instruments and querying financial data through the EVA Tick CLI",
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.2"
36
+ "@evatick/cli": "0.4.3"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
@@ -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 CZCE. Do not invent unsupported commands for funds, options, bonds, FX, macro data, calendars, or alternative data.
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 can be forward- or backward-adjusted. `--as-of` selects the
50
- forward-adjustment anchor date; indices and cryptocurrencies only support
51
- unadjusted bars. Coinbase supports `1m`, `5m`, `15m`, `60m`, and `1d`; Binance
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 CZCE sources and support unadjusted daily bars.
56
+ CFFEX, SHFE, INE, CZCE, DCE, and GFEX sources and support unadjusted daily bars.
55
57
 
56
58
  ## Results and files
57
59