gitextract_zbddjf3w/ ├── .gitignore ├── .landscape.yml ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE.md ├── MANIFEST.in ├── README.rst ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── contrib/ │ │ ├── factories/ │ │ │ └── instrumentscandlesfactory.rst │ │ ├── factories.rst │ │ ├── generic/ │ │ │ └── generic.rst │ │ ├── generic.rst │ │ ├── orders/ │ │ │ ├── limitorderrequest.rst │ │ │ ├── marketorderrequest.rst │ │ │ ├── mitorderrequest.rst │ │ │ ├── positionscloserequest.rst │ │ │ ├── stoplossorderrequest.rst │ │ │ ├── stoporderrequest.rst │ │ │ ├── takeprofitorderrequest.rst │ │ │ ├── tradecloserequest.rst │ │ │ └── trailingstoplossorderrequest.rst │ │ ├── orders.rst │ │ ├── support/ │ │ │ ├── clientextensions.rst │ │ │ ├── stoplossdetails.rst │ │ │ ├── takeprofitdetails.rst │ │ │ └── trailingstoplossdetails.rst │ │ └── support.rst │ ├── dirstruct.py │ ├── endpoints/ │ │ ├── accounts/ │ │ │ ├── accountchanges.rst │ │ │ ├── accountconfiguration.rst │ │ │ ├── accountdetails.rst │ │ │ ├── accountinstruments.rst │ │ │ ├── accountlist.rst │ │ │ └── accountsummary.rst │ │ ├── accounts.rst │ │ ├── forexlabs/ │ │ │ ├── autochartist.rst │ │ │ ├── calendar.rst │ │ │ ├── commitmentsoftraders.rst │ │ │ ├── historicalpositionratios.rst │ │ │ ├── orderbookdata.rst │ │ │ └── spreads.rst │ │ ├── forexlabs.rst │ │ ├── instruments/ │ │ │ ├── instrumentlist.rst │ │ │ ├── instrumentorderbook.rst │ │ │ └── instrumentpositionbook.rst │ │ ├── instruments.rst │ │ ├── orders/ │ │ │ ├── ordercancel.rst │ │ │ ├── orderclientextensions.rst │ │ │ ├── ordercreate.rst │ │ │ ├── orderdetails.rst │ │ │ ├── orderlist.rst │ │ │ ├── orderreplace.rst │ │ │ └── orderspending.rst │ │ ├── orders.rst │ │ ├── positions/ │ │ │ ├── openpositions.rst │ │ │ ├── positionclose.rst │ │ │ ├── positiondetails.rst │ │ │ └── positionlist.rst │ │ ├── positions.rst │ │ ├── pricing/ │ │ │ ├── pricinginfo.rst │ │ │ └── pricingstream.rst │ │ ├── pricing.rst │ │ ├── trades/ │ │ │ ├── opentrades.rst │ │ │ ├── tradeCRCDO.rst │ │ │ ├── tradeclientextensions.rst │ │ │ ├── tradeclose.rst │ │ │ ├── tradedetails.rst │ │ │ └── tradeslist.rst │ │ ├── trades.rst │ │ ├── transactions/ │ │ │ ├── transactiondetails.rst │ │ │ ├── transactionidrange.rst │ │ │ ├── transactionlist.rst │ │ │ ├── transactionssinceid.rst │ │ │ └── transactionsstream.rst │ │ └── transactions.rst │ ├── examples.rst │ ├── index.rst │ ├── installation.rst │ ├── oanda-api-v20.rst │ ├── oandapyV20.contrib.rst │ ├── oandapyV20.definitions.accounts.rst │ ├── oandapyV20.definitions.instruments.rst │ ├── oandapyV20.definitions.orders.rst │ ├── oandapyV20.definitions.pricing.rst │ ├── oandapyV20.definitions.rst │ ├── oandapyV20.definitions.trades.rst │ ├── oandapyV20.definitions.transactions.rst │ ├── oandapyV20.endpoints.rst │ ├── oandapyV20.types.rst │ └── types/ │ ├── AccountID.rst │ ├── AccountUnits.rst │ ├── ClientComment.rst │ ├── ClientID.rst │ ├── ClientTag.rst │ ├── DateTime.rst │ ├── OrderID.rst │ ├── OrderIdentifier.rst │ ├── OrderSpecifier.rst │ ├── PriceValue.rst │ ├── TradeID.rst │ └── Units.rst ├── examples/ │ └── README.rst ├── jupyter/ │ ├── account.txt │ ├── accounts.ipynb │ ├── exampleauth/ │ │ ├── __init__.py │ │ └── exampleauth.py │ ├── exceptions.ipynb │ ├── historical.ipynb │ ├── index.ipynb │ ├── orders.ipynb │ ├── positions.ipynb │ ├── streams.ipynb │ ├── token.txt │ └── trades.ipynb ├── oandapyV20/ │ ├── __init__.py │ ├── contrib/ │ │ ├── __init__.py │ │ ├── factories/ │ │ │ ├── __init__.py │ │ │ └── history.py │ │ ├── generic.py │ │ └── requests/ │ │ ├── __init__.py │ │ ├── baserequest.py │ │ ├── extensions.py │ │ ├── limitorder.py │ │ ├── marketorder.py │ │ ├── mitorder.py │ │ ├── onfill.py │ │ ├── positionclose.py │ │ ├── stoplossorder.py │ │ ├── stoporder.py │ │ ├── takeprofitorder.py │ │ ├── tradeclose.py │ │ └── trailingstoplossorder.py │ ├── definitions/ │ │ ├── __init__.py │ │ ├── accounts.py │ │ ├── instruments.py │ │ ├── orders.py │ │ ├── pricing.py │ │ ├── primitives.py │ │ ├── trades.py │ │ └── transactions.py │ ├── endpoints/ │ │ ├── __init__.py │ │ ├── accounts.py │ │ ├── apirequest.py │ │ ├── decorators.py │ │ ├── forexlabs.py │ │ ├── instruments.py │ │ ├── orders.py │ │ ├── positions.py │ │ ├── pricing.py │ │ ├── responses/ │ │ │ ├── __init__.py │ │ │ ├── accounts.py │ │ │ ├── forexlabs.py │ │ │ ├── instruments.py │ │ │ ├── orders.py │ │ │ ├── positions.py │ │ │ ├── pricing.py │ │ │ ├── trades.py │ │ │ └── transactions.py │ │ ├── trades.py │ │ └── transactions.py │ ├── exceptions.py │ ├── oandapyV20.py │ └── types/ │ ├── __init__.py │ └── types.py ├── readthedocs.yml ├── requirements.txt ├── setup.py └── tests/ ├── __init__.py ├── account.txt ├── test_accounts.py ├── test_contrib_factories.py ├── test_contrib_generic.py ├── test_contrib_orders.py ├── test_decorators.py ├── test_definitions.py ├── test_forexlabs.py ├── test_instruments.py ├── test_oandapyv20.py ├── test_orders.py ├── test_positions.py ├── test_pricing.py ├── test_trades.py ├── test_transactions.py ├── test_types.py ├── token.txt └── unittestsetup.py