Unofficial Elixir SDK for the Oanda API.
Note - this is highly experimental and in active development.
Forex Trading Risk Dislaimer
Trading foreign exchange (forex) on margin carries a high level of risk and may not be suitable for all investors. The leveraged nature of forex trading can amplify both profits and losses, potentially resulting in the loss of all invested capital. Before engaging in forex trading, please carefully consider your investment objectives, experience level, and risk tolerance.
This SDK is provided "as-is," without any warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. The use of this SDK is at your own risk, and we make no guarantees regarding its accuracy, reliability, or suitability for any specific trading strategy or purpose. Users are responsible for their own trading decisions and should seek independent financial advice if necessary.
- Limited test coverage, validaiton of schemas
- Not yet available on hex
def deps do
[
{:ex_oanda, git: "https://github.com/nicholasbair/ex_oanda.git", tag: "v0.0.3"}
]
end
- Connection is a struct that stores your Oanda API credentials.
conn =
%ExOanda.Connection{
token: "1234", # Configured in the Oanda API
api_server: "https://api-fxpractice.oanda.com/v3",
stream_server: "https://stream-fxpractice.oanda.com/v3",
options: [], # Passed to Req (HTTP client)
telemetry: true # Enables telemetry and the default telemetry logger (defaults to `false`)
}
Options from ExOanda.Connection
are passed directly to Req and can be used to override the default behavior of the HTTP client. You can find a complete list of options here. The most relevent Req defaults are listed below:
[
retry: :safe_transient,
cache: false,
compress_body: false,
compressed: true, # ask server to return compressed responses
receive_timeout: 15_000, # socket receive timeout
pool_timeout: 5000 # pool checkout timeout
]
When using options, do not override the value for decode_body
, in most cases, the SDK is relying on Req to decode the response via Jason.
- Nearly all functions support returning an ok/error tuple or raising an exception, for example:
conn = %ExOanda.Connection{token: "1234"}
# Returns {:ok, result} or {:error, reason}
{:ok, response} = ExOanda.Accounts.first(conn)
# Returns result or raises an exception
response = ExOanda.Accounts.first!(conn)
- Where supported, queries and filters can be passed as keyword list and are validated by NimbleOptions:
{:ok, threads} =
%ExOanda.Connection{token: "1234"}
|> ExOanda.Accounts.list_changes("account_id", since_transaction_id: "5678")
- Ecto is also used when transforming the API response from Oanda into structs. Any validation errors are logged, but errors are not returned/raised in order to make to SDK resilient to changes to the API contract.