├── .deepsource.toml ├── .github ├── FUNDING.yml └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── firstrade ├── __init__.py ├── account.py ├── exceptions.py ├── order.py ├── symbols.py └── urls.py ├── setup.py └── test.py /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/README.md -------------------------------------------------------------------------------- /firstrade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/firstrade/__init__.py -------------------------------------------------------------------------------- /firstrade/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/firstrade/account.py -------------------------------------------------------------------------------- /firstrade/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/firstrade/exceptions.py -------------------------------------------------------------------------------- /firstrade/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/firstrade/order.py -------------------------------------------------------------------------------- /firstrade/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/firstrade/symbols.py -------------------------------------------------------------------------------- /firstrade/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/firstrade/urls.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxxRK/firstrade-api/HEAD/test.py --------------------------------------------------------------------------------