├── .github └── workflows │ ├── python-publish.yml │ └── static.yml ├── .gitignore ├── .idea └── .gitignore ├── HISTORY.md ├── LICENSE ├── README.md ├── config.ini ├── docs ├── company.html ├── console.html ├── constants.html ├── imgs │ └── order_structure.png ├── index.html ├── instrument.html ├── order.html ├── position.html ├── trading212.html └── utils.html ├── examples ├── Instrument_pricing_history_example.ipynb ├── cfd_example.ipynb ├── cfd_example.py ├── equity_example.ipynb ├── equity_example.py └── instrument_pricing_history_example.py ├── pyproject.toml ├── pytrading212 ├── __init__.py ├── console.py ├── constants.py ├── instrument.py ├── order.py ├── position.py ├── trading212.py └── utils.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py └── test_order.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/config.ini -------------------------------------------------------------------------------- /docs/company.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/docs/company.html -------------------------------------------------------------------------------- /docs/console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/docs/console.html -------------------------------------------------------------------------------- /docs/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/docs/constants.html -------------------------------------------------------------------------------- /docs/imgs/order_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/docs/imgs/order_structure.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/instrument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/docs/instrument.html -------------------------------------------------------------------------------- /docs/order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/docs/order.html -------------------------------------------------------------------------------- /docs/position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/docs/position.html -------------------------------------------------------------------------------- /docs/trading212.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/docs/trading212.html -------------------------------------------------------------------------------- /docs/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/docs/utils.html -------------------------------------------------------------------------------- /examples/Instrument_pricing_history_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/examples/Instrument_pricing_history_example.ipynb -------------------------------------------------------------------------------- /examples/cfd_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/examples/cfd_example.ipynb -------------------------------------------------------------------------------- /examples/cfd_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/examples/cfd_example.py -------------------------------------------------------------------------------- /examples/equity_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/examples/equity_example.ipynb -------------------------------------------------------------------------------- /examples/equity_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/examples/equity_example.py -------------------------------------------------------------------------------- /examples/instrument_pricing_history_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/examples/instrument_pricing_history_example.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytrading212/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/pytrading212/__init__.py -------------------------------------------------------------------------------- /pytrading212/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/pytrading212/console.py -------------------------------------------------------------------------------- /pytrading212/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/pytrading212/constants.py -------------------------------------------------------------------------------- /pytrading212/instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/pytrading212/instrument.py -------------------------------------------------------------------------------- /pytrading212/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/pytrading212/order.py -------------------------------------------------------------------------------- /pytrading212/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/pytrading212/position.py -------------------------------------------------------------------------------- /pytrading212/trading212.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/pytrading212/trading212.py -------------------------------------------------------------------------------- /pytrading212/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/pytrading212/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytz 2 | selenium 3 | requests 4 | rich -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HellAmbro/Trading212API/HEAD/tests/test_order.py --------------------------------------------------------------------------------