https://github.com/vbrazo/questrade_elixir
Elixir REST client api for Questrade trading platform http://www.questrade.com/api/documentation
https://github.com/vbrazo/questrade_elixir
Last synced: about 1 year ago
JSON representation
Elixir REST client api for Questrade trading platform http://www.questrade.com/api/documentation
- Host: GitHub
- URL: https://github.com/vbrazo/questrade_elixir
- Owner: vbrazo
- Created: 2021-07-06T18:13:50.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-06T18:45:41.000Z (almost 5 years ago)
- Last Synced: 2025-01-24T20:30:05.568Z (over 1 year ago)
- Language: Elixir
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Questrade Client
Set up a practice account to play around:
http://www.questrade.com/api/free-practice-account
Login with it at:
https://practicelogin.questrade.com/Signin.aspx?ReturnUrl=%2fAPIAccess%2fUserApps.aspx
Register a practice app (give it all permissions, this is a test account)
Generate a new device authorization token, you'll need that! It's considered a "refresh" token. After being used once, it's no more good - you'll get a new refresh token though.
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed by adding `questrade_client` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:questrade_client, "~> 0.1.0"}
]
end
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc) and published on [HexDocs](https://hexdocs.pm). Once published, the docs can be found at [https://hexdocs.pm/questrade_client](https://hexdocs.pm/questrade_client).