https://github.com/joemccann/robintrack-api-utilities
🧰 A collection of utilities for building datasets and interacting with the Robintrack API.
https://github.com/joemccann/robintrack-api-utilities
robinhood robintrack stocks trading
Last synced: 6 months ago
JSON representation
🧰 A collection of utilities for building datasets and interacting with the Robintrack API.
- Host: GitHub
- URL: https://github.com/joemccann/robintrack-api-utilities
- Owner: joemccann
- Created: 2020-07-18T22:44:31.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-25T14:21:50.000Z (over 3 years ago)
- Last Synced: 2025-03-25T09:52:48.044Z (7 months ago)
- Topics: robinhood, robintrack, stocks, trading
- Language: JavaScript
- Homepage:
- Size: 318 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Robintrack API Utilities
🧰 A collection of utilities for building datasets and interacting with the
Robintrack API.## Usage
Module:
```sh
npm i -S robintrack-api-utilities
```In your app:
```js
const {
downloadLatestLeaderboard,
generateSymbolsFile,
generateSymbolsJSON
} = require('robintrack-api-utilities')const { data } = await generateSymbolsJSON()
console.dir(data) // ['A','AA','AAAU'...]
```CLI:
```sh
npm run build -- generate
```Generates a JSON file of all ticker symbols on Robintrack and
writes it to the `json` directory.## Tests
```sh
npm i -D
npm test
```## LICENSE
MIT