massive-cli 0.0.2 → 0.0.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 +5 -5
- package/dist/cli.js +3346 -1824
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ A CLI tool for accessing [Massive(Polygon)](https://massive.com) financial data
|
|
|
9
9
|
Run commands directly without installing:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npx massive <command> [options]
|
|
12
|
+
npx --yes massive <command> [options]
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
### Local Installation
|
|
@@ -43,20 +43,20 @@ bun dist/cli.js <command> [options]
|
|
|
43
43
|
|
|
44
44
|
**Stocks:**
|
|
45
45
|
```bash
|
|
46
|
-
npx massive stocks-aggs --ticker AAPL --from 2023-01-01 --to 2023-01-31
|
|
46
|
+
npx --yes massive stocks-aggs --ticker AAPL --from 2023-01-01 --to 2023-01-31
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
**Crypto:**
|
|
50
50
|
```bash
|
|
51
|
-
npx massive crypto-snapshot --ticker X:BTCUSD
|
|
51
|
+
npx --yes massive crypto-snapshot --ticker X:BTCUSD
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
**Market Status:**
|
|
55
55
|
```bash
|
|
56
|
-
npx massive market-status
|
|
56
|
+
npx --yes massive market-status
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
Use `--help` to see all available commands:
|
|
60
60
|
```bash
|
|
61
|
-
npx massive --help
|
|
61
|
+
npx --yes massive --help
|
|
62
62
|
```
|