├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION.rst ├── LICENSE ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── install.rst ├── license.rst ├── make.bat ├── oanda.rst ├── pyoanda.rst ├── pyoanda.tests.rst └── usage.rst ├── examples ├── create_stop_order.py ├── fetch.ipynb ├── grab_data.py └── multi_currency_prices.py ├── pyoanda ├── __init__.py ├── client.py ├── exceptions.py ├── order.py └── tests │ ├── __init__.py │ ├── _test_integration │ ├── __init__.py │ ├── integration_test_case.py │ ├── test_account.py │ ├── test_client_fundation.py │ ├── test_instruments.py │ ├── test_orders.py │ ├── test_position.py │ ├── test_trade.py │ └── test_transaction.py │ ├── test_client │ ├── __init__.py │ ├── test_account.py │ ├── test_fundation.py │ ├── test_instruments.py │ ├── test_orders.py │ ├── test_position.py │ ├── test_trade.py │ └── test_transaction.py │ └── test_order.py ├── requirements.txt ├── requirements2.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/DESCRIPTION.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/oanda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/docs/oanda.rst -------------------------------------------------------------------------------- /docs/pyoanda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/docs/pyoanda.rst -------------------------------------------------------------------------------- /docs/pyoanda.tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/docs/pyoanda.tests.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /examples/create_stop_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/examples/create_stop_order.py -------------------------------------------------------------------------------- /examples/fetch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/examples/fetch.ipynb -------------------------------------------------------------------------------- /examples/grab_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/examples/grab_data.py -------------------------------------------------------------------------------- /examples/multi_currency_prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/examples/multi_currency_prices.py -------------------------------------------------------------------------------- /pyoanda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/__init__.py -------------------------------------------------------------------------------- /pyoanda/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/client.py -------------------------------------------------------------------------------- /pyoanda/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/exceptions.py -------------------------------------------------------------------------------- /pyoanda/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/order.py -------------------------------------------------------------------------------- /pyoanda/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyoanda/tests/_test_integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyoanda/tests/_test_integration/integration_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/_test_integration/integration_test_case.py -------------------------------------------------------------------------------- /pyoanda/tests/_test_integration/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/_test_integration/test_account.py -------------------------------------------------------------------------------- /pyoanda/tests/_test_integration/test_client_fundation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/_test_integration/test_client_fundation.py -------------------------------------------------------------------------------- /pyoanda/tests/_test_integration/test_instruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/_test_integration/test_instruments.py -------------------------------------------------------------------------------- /pyoanda/tests/_test_integration/test_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/_test_integration/test_orders.py -------------------------------------------------------------------------------- /pyoanda/tests/_test_integration/test_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/_test_integration/test_position.py -------------------------------------------------------------------------------- /pyoanda/tests/_test_integration/test_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/_test_integration/test_trade.py -------------------------------------------------------------------------------- /pyoanda/tests/_test_integration/test_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/_test_integration/test_transaction.py -------------------------------------------------------------------------------- /pyoanda/tests/test_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyoanda/tests/test_client/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/test_client/test_account.py -------------------------------------------------------------------------------- /pyoanda/tests/test_client/test_fundation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/test_client/test_fundation.py -------------------------------------------------------------------------------- /pyoanda/tests/test_client/test_instruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/test_client/test_instruments.py -------------------------------------------------------------------------------- /pyoanda/tests/test_client/test_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/test_client/test_orders.py -------------------------------------------------------------------------------- /pyoanda/tests/test_client/test_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/test_client/test_position.py -------------------------------------------------------------------------------- /pyoanda/tests/test_client/test_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/test_client/test_trade.py -------------------------------------------------------------------------------- /pyoanda/tests/test_client/test_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/test_client/test_transaction.py -------------------------------------------------------------------------------- /pyoanda/tests/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/pyoanda/tests/test_order.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements2.txt: -------------------------------------------------------------------------------- 1 | unittest2 2 | mock 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toloco/pyoanda/HEAD/setup.py --------------------------------------------------------------------------------