https://github.com/blankenshipz/oanda-rs
Rust wrapper for the Oanda Rest API
https://github.com/blankenshipz/oanda-rs
forex forex-trading oanda oanda-api oanda-rest rust
Last synced: 3 months ago
JSON representation
Rust wrapper for the Oanda Rest API
- Host: GitHub
- URL: https://github.com/blankenshipz/oanda-rs
- Owner: blankenshipz
- License: mit
- Created: 2017-04-22T03:33:07.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T10:09:24.000Z (about 3 years ago)
- Last Synced: 2024-08-10T10:59:21.485Z (almost 2 years ago)
- Topics: forex, forex-trading, oanda, oanda-api, oanda-rest, rust
- Language: Rust
- Size: 32.2 KB
- Stars: 1
- Watchers: 3
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# OANDARS
`oandars` is a Rust wrapper for the `oanda` [Rest-V20](http://developer.oanda.com/rest-live-v20/introduction/) API
## Missing Features
This library does not yet implement all of the features of the `oanda` API, if a feature you're interested in is missing please feel free to [open an issue](https://github.com/blankenshipz/oanda-rs/issues)
## Usage
See the [examples](examples/) and the [documentation](https://docs.rs/oandars/0.1.1/oandars/) for details
## Development
### Setup
1. Create an `Oanda` test account and name it `Testv20`
1. Copy the `.secrets.sample` to `.secrets` and update the variables based on your new test account
### Running Tests
The test suite can be run with `docker-compose`:
```sh
docker-compose run --rm lib
```
Or if you prefer to just use cargo:
```sh
cargo test -- --nocapture
```