├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin └── OANDAd ├── etc └── OANDA │ ├── config │ ├── OANDAd.cfg │ └── plugins │ │ ├── example │ │ └── mysql.cfg │ │ ├── plainfile.cfg │ │ └── pubsub.cfg │ └── plugins │ ├── README.md │ ├── example │ └── mysql.py │ ├── plainfile.py │ └── pubsub.py ├── oanda_trading_environment ├── __init__.py ├── daemon │ ├── __init__.py │ └── plugin.py └── stream │ ├── __init__.py │ ├── candlefactory.py │ ├── parser.py │ ├── parserV20.py │ └── streamrecord.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── test_candle.py └── test_config.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/README.md -------------------------------------------------------------------------------- /bin/OANDAd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/bin/OANDAd -------------------------------------------------------------------------------- /etc/OANDA/config/OANDAd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/etc/OANDA/config/OANDAd.cfg -------------------------------------------------------------------------------- /etc/OANDA/config/plugins/example/mysql.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/etc/OANDA/config/plugins/example/mysql.cfg -------------------------------------------------------------------------------- /etc/OANDA/config/plugins/plainfile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/etc/OANDA/config/plugins/plainfile.cfg -------------------------------------------------------------------------------- /etc/OANDA/config/plugins/pubsub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/etc/OANDA/config/plugins/pubsub.cfg -------------------------------------------------------------------------------- /etc/OANDA/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/etc/OANDA/plugins/README.md -------------------------------------------------------------------------------- /etc/OANDA/plugins/example/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/etc/OANDA/plugins/example/mysql.py -------------------------------------------------------------------------------- /etc/OANDA/plugins/plainfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/etc/OANDA/plugins/plainfile.py -------------------------------------------------------------------------------- /etc/OANDA/plugins/pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/etc/OANDA/plugins/pubsub.py -------------------------------------------------------------------------------- /oanda_trading_environment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/oanda_trading_environment/__init__.py -------------------------------------------------------------------------------- /oanda_trading_environment/daemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oanda_trading_environment/daemon/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/oanda_trading_environment/daemon/plugin.py -------------------------------------------------------------------------------- /oanda_trading_environment/stream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/oanda_trading_environment/stream/__init__.py -------------------------------------------------------------------------------- /oanda_trading_environment/stream/candlefactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/oanda_trading_environment/stream/candlefactory.py -------------------------------------------------------------------------------- /oanda_trading_environment/stream/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/oanda_trading_environment/stream/parser.py -------------------------------------------------------------------------------- /oanda_trading_environment/stream/parserV20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/oanda_trading_environment/stream/parserV20.py -------------------------------------------------------------------------------- /oanda_trading_environment/stream/streamrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/oanda_trading_environment/stream/streamrecord.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_candle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/tests/test_candle.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hootnot/oanda-trading-environment/HEAD/tests/test_config.py --------------------------------------------------------------------------------