├── .flake8 ├── .github ├── scripts │ └── create_release.py └── workflows │ ├── docker-image.yml │ ├── greetings.yml │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── app.py ├── back ├── ejtraderCT ├── __init__.py └── api │ ├── Symbol.py │ ├── __init__.py │ ├── buffer.py │ ├── ctrader.py │ ├── fix.py │ └── math.py ├── examples └── restapi │ ├── .env_example │ ├── Dockerfile │ ├── EjtraderCT RestAPI.postman_collection.json │ ├── README.md │ ├── app.py │ ├── docker-compose.yml │ └── requirements.txt ├── mkdocs.yml ├── pylintrc ├── pylintrcconda ├── requirements.txt ├── setup.cfg ├── setup.py └── test ├── fixTraderTest.py ├── symbol_table.py └── test_math.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 110 3 | -------------------------------------------------------------------------------- /.github/scripts/create_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/.github/scripts/create_release.py -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/app.py -------------------------------------------------------------------------------- /back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/back -------------------------------------------------------------------------------- /ejtraderCT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/ejtraderCT/__init__.py -------------------------------------------------------------------------------- /ejtraderCT/api/Symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/ejtraderCT/api/Symbol.py -------------------------------------------------------------------------------- /ejtraderCT/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ejtraderCT/api/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/ejtraderCT/api/buffer.py -------------------------------------------------------------------------------- /ejtraderCT/api/ctrader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/ejtraderCT/api/ctrader.py -------------------------------------------------------------------------------- /ejtraderCT/api/fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/ejtraderCT/api/fix.py -------------------------------------------------------------------------------- /ejtraderCT/api/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/ejtraderCT/api/math.py -------------------------------------------------------------------------------- /examples/restapi/.env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/examples/restapi/.env_example -------------------------------------------------------------------------------- /examples/restapi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/examples/restapi/Dockerfile -------------------------------------------------------------------------------- /examples/restapi/EjtraderCT RestAPI.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/examples/restapi/EjtraderCT RestAPI.postman_collection.json -------------------------------------------------------------------------------- /examples/restapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/examples/restapi/README.md -------------------------------------------------------------------------------- /examples/restapi/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/examples/restapi/app.py -------------------------------------------------------------------------------- /examples/restapi/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/examples/restapi/docker-compose.yml -------------------------------------------------------------------------------- /examples/restapi/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | uvicorn 3 | pydantic 4 | ejtraderCT==1.1.3 -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: ejtraderCT 2 | -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/pylintrc -------------------------------------------------------------------------------- /pylintrcconda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/pylintrcconda -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/setup.py -------------------------------------------------------------------------------- /test/fixTraderTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/test/fixTraderTest.py -------------------------------------------------------------------------------- /test/symbol_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/test/symbol_table.py -------------------------------------------------------------------------------- /test/test_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderCT/HEAD/test/test_math.py --------------------------------------------------------------------------------