{"id":17218909,"url":"https://github.com/andrerpena/quotr","last_synced_at":"2025-04-13T22:31:49.653Z","repository":{"id":65478621,"uuid":"45306718","full_name":"andrerpena/quotr","owner":"andrerpena","description":"A Node.js CLI for displaying stock exchange quotes","archived":false,"fork":false,"pushed_at":"2019-05-23T17:31:13.000Z","size":470,"stargazers_count":65,"open_issues_count":2,"forks_count":13,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-27T12:52:35.082Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andrerpena.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-10-31T15:22:25.000Z","updated_at":"2024-04-01T05:48:39.000Z","dependencies_parsed_at":"2023-01-25T15:16:20.014Z","dependency_job_id":null,"html_url":"https://github.com/andrerpena/quotr","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrerpena%2Fquotr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrerpena%2Fquotr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrerpena%2Fquotr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrerpena%2Fquotr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andrerpena","download_url":"https://codeload.github.com/andrerpena/quotr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248790642,"owners_count":21162065,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-15T03:48:33.546Z","updated_at":"2025-04-13T22:31:49.328Z","avatar_url":"https://github.com/andrerpena.png","language":"JavaScript","funding_links":[],"categories":["Projects"],"sub_categories":[],"readme":"# Quotr #\n\nQuotr is a [Node.js](https://nodejs.org/en/) [CLI](https://en.wikipedia.org/wiki/Command-line_interface) \nfor getting near real-time stock quotes from [Yahoo Finance](http://finance.yahoo.com/).\nIt works for pretty much every relevant ticker in the world (currently 26.626 symbols across the globe). The delay depends on the Yahoo's data provider. \nNormally it's 15 minutes. You can check the list of exchanges and their corresponding delays [here](https://help.yahoo.com/kb/SLN2310.html).\n\n\n\n# Installing #\n\nMake sure you have [Node.js installed](https://nodejs.org/en/download/package-manager/), then... (you'll need `sudo` on linux boxes)\n\n    npm install -g quotr\n    \n# Using #\n\nOpen the terminal (or command prompt on Windows) and type:\n\n    quotr\n    \nNow you've entered the `quotr` shell.\n    \nFor getting all available commands:\n\n    help\n    \nFor getting help for a specific command:\n\n    \u003ccommand\u003e /?\n    \nNow you can start entering commands...\n\n## Commands ##\n\n### `symbol-search` (short: `ss`) ###\n\nSearchs for ticker symbols that match the given criteria. Example:\n\n    ss apple\n    \n![image](http://i.imgur.com/0IBjBEL.png)\n\n### `snapshot` (short: `s`) ###\n\n\nDisplays the latest information about the given symbol. Example:\n\n    s aapl\n    \n![image](http://i.imgur.com/96wbGGe.png)\n\nOptionally, you can pass fields in using the `-f` parameter. Example:\n\n    s aapl -f v (displays the volume)\n    \n![image](http://i.imgur.com/35iDFh0.png)\n\nNow it would be helpful to know the available fields for the `s` command...\n\n### `field-list` (short: `f`) ###\n\nDisplays or searches for the available `snapshot` fields. Examples:\n\n    f (displays all fields)\n    f -s average (displays all fields that match `average`)\n    \n    \n![image](http://i.imgur.com/TIngeBa.png)\n\n### `history` (short: `h`) ###\n\nDisplays the history for a given symbol. Examples:\n\n    h aapl (displays the last 10 days history of the `aapl` symbol, which is the default in case no interval is specified)\n    h aapl -l 60 (displays the last 60 days history for the `aapl` symbol)\n    h aapl -f 2015-10-01 -t 2015-10-30 (displays the history for the `aapl` symbol from 2015-10-01 to 2015-10-30)\n    \nCurrently, the `history` command does not take into account the current day until it's closed.\n    \n![image](http://i.imgur.com/JpsM2wr.png)\n    \n### `variation` (short: `v`) ###\n\nDisplays the variation of the given symbol. Examples:\n\n    v aapl (displays the last 10 days variation of the `aapl` symbol, which is the default in case no interval is specified)\n    v aapl -l 60 (displays the last 60 days variation for the `aapl` symbol)\n    v aapl -f 2015-10-01 -t 2015-10-30 (displays the varoatopm for the `aapl` symbol from 2015-10-01 to 2015-10-30)\n    \nCurrently, the `variation` command does not take into account the current day until it's closed.\n\n![image](http://i.imgur.com/eorRB2I.png)\n\n### License ###\n\nMIT.\n\n### Third Party ###\n\n - [vorpal](https://github.com/dthree/vorpal) - For creating the CLI.\n - [node-yahoo-finance](https://github.com/pilwon/node-yahoo-finance) - For getting data out of Yahoo Finance.\n - [yahoo-ticker-symbol-downloader](https://github.com/Benny-/Yahoo-ticker-symbol-downloader) - For getting all the ticker symbols our of Yahoo Finance.\n - [babar](https://github.com/stephan83/babar) - For creating the bar charts.\n \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrerpena%2Fquotr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrerpena%2Fquotr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrerpena%2Fquotr/lists"}