{"id":13564466,"url":"https://github.com/piquette/qtrn","last_synced_at":"2025-05-15T02:14:12.987Z","repository":{"id":57484721,"uuid":"137431635","full_name":"piquette/qtrn","owner":"piquette","description":"A cli tool to streamline financial markets data analysis :wrench:","archived":false,"fork":false,"pushed_at":"2020-05-30T19:25:14.000Z","size":6749,"stargazers_count":78,"open_issues_count":1,"forks_count":19,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-04-03T21:35:38.243Z","etag":null,"topics":["cli","data","data-science","finance","go","golang","options","quotes","scraper","stock","stock-analysis","stock-market"],"latest_commit_sha":null,"homepage":"https://piquette.io/projects/qtrn","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/piquette.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":"2018-06-15T02:26:53.000Z","updated_at":"2025-03-16T14:18:30.000Z","dependencies_parsed_at":"2022-08-26T13:23:33.465Z","dependency_job_id":null,"html_url":"https://github.com/piquette/qtrn","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piquette%2Fqtrn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piquette%2Fqtrn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piquette%2Fqtrn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piquette%2Fqtrn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/piquette","download_url":"https://codeload.github.com/piquette/qtrn/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254259430,"owners_count":22040822,"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":["cli","data","data-science","finance","go","golang","options","quotes","scraper","stock","stock-analysis","stock-market"],"created_at":"2024-08-01T13:01:31.818Z","updated_at":"2025-05-15T02:14:12.970Z","avatar_url":"https://github.com/piquette.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"[![Go Report Card](https://goreportcard.com/badge/github.com/piquette/qtrn)](https://goreportcard.com/badge/github.com/piquette/qtrn)\n[![Build Status](https://travis-ci.org/piquette/qtrn.svg?branch=master)](https://travis-ci.org/piquette/qtrn)\n[![GoDoc](https://godoc.org/github.com/piquette/qtrn?status.svg)](https://godoc.org/github.com/piquette/qtrn)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n# :zap: qtrn :zap:\nThe official cli tool for making financial markets analysis as fast as you are.\n\nPronounced \"quote-tron\" as a throwback to those awesome financial terminals of the 80's. This project is intended as a living example of the capabilities of the [finance-go] library.\n\n## Commands\nThe current available commands are:\n* `quote` - prints tables of quotes to the current shell\n* `options` - prints tables of options contract quotes to the current shell\n* `write` - writes tables of quotes/history to csv files\n* `chart` - (beta) prints a nifty sparkline chart of security for various time frames\n\n## Installation\nIn order to use this awesome tool, you'll need to get it on your machine!\n\n### From Homebrew\nIf you're on macOS, the easiest way to get qtrn is through the homebrew tap.\n```\nbrew tap piquette/qtrn\nbrew install qtrn\n```\n\n### From Release\n1. Head over to the official [releases page](https://github.com/piquette/qtrn/releases)\n2. Determine the appropriate distribution for your operating system (mac | windows | linux)\n3. Download and untar the distribution. Shortcut for macs:\n```\ncurl -sL https://github.com/piquette/qtrn/releases/download/v0.0.9/qtrn_0.0.9_darwin_amd64.tar.gz | tar zx\n```\n4. Move the binary into your local `$PATH`.\n5. Run `qtrn help`.\n\n### From Source\nqtrn is built in Go. `go get` the source repo, like this:\n\n```\ngo get github.com/piquette/qtrn\n```\n\nIf your `$GOPATH` is configured, and git is setup to know your credentials, in a few moments the command should complete with no output. The repository will exist under `$GOPATH/src/github.com/piquette`.\n\n## Usage\nRun the command `qtrn` in your shell for the list of possible commands.\n\n### Contributing\nThe preferred way to build qtrn for development is using `make`. Run `make build \u0026\u0026 qtrn help`.\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request :)\n\n\n## Release\n\nRelease builds are generated with [goreleaser]. Make sure you have the software\nand a `GITHUB_TOKEN`: set in your env.\n\n``` sh\ngo get -u github.com/goreleaser/goreleaser\nexport GITHUB_TOKEN=...\n```\n\nCommit changes and tag `HEAD`:\n\n``` sh\ngit tag v[NEW_VERSION_NUMBER]\ngit push origin --tags\n```\n\nThen run goreleaser and you're done! Check [releases] (it also pushes to the\nHomebrew tap).\n\n``` sh\ngoreleaser --rm-dist\n```\n\n[goreleaser]: https://github.com/goreleaser/goreleaser\n[releases]: https://github.com/piquette/qtrn/releases\n[finance-go]: https://github.com/piquette/finance-go\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiquette%2Fqtrn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpiquette%2Fqtrn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiquette%2Fqtrn/lists"}