Skip to main content

oanda

Set Oanda key

Source Code: [link]

openbb.keys.oanda(account: str, access_token: str, account_type: str = "", persist: bool = False, show_output: bool = False)

Parameters

NameTypeDescriptionDefaultOptional
accountstrUser accountNoneFalse
access_tokenstrUser tokenNoneFalse
account_typestrUser account typeTrue
persistboolIf False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
If True, api key change will be global, i.e. it will affect terminal environment variables.
By default, False.
FalseTrue
show_outputboolDisplay status string or not. By default, False.FalseTrue

Returns

TypeDescription
strStatus of key set

Examples

from openbb_terminal.sdk import openbb
openbb.keys.oanda(
account="example_account",
access_token="example_access_token",
account_type="example_account_type"
)