├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .firebaserc ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── build.yml │ └── publish-to-pypi.yml ├── .gitignore ├── LICENSE.YOLO.md ├── README.md ├── contributing.md ├── dev.requirements.txt ├── docs ├── .vuepress │ └── config.js └── index.md ├── examples └── upstox.py ├── jugaad_trader ├── __init__.py ├── cli.py ├── ucli.py ├── upstox.py ├── util.py ├── zcli.py └── zerodha.py ├── pyproject.toml ├── requirements.dev.txt ├── requirements.txt └── tests ├── __init__.py ├── test_console.py └── test_zerodha.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.YOLO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/LICENSE.YOLO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/contributing.md -------------------------------------------------------------------------------- /dev.requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/dev.requirements.txt -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/docs/index.md -------------------------------------------------------------------------------- /examples/upstox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/examples/upstox.py -------------------------------------------------------------------------------- /jugaad_trader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/jugaad_trader/__init__.py -------------------------------------------------------------------------------- /jugaad_trader/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/jugaad_trader/cli.py -------------------------------------------------------------------------------- /jugaad_trader/ucli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/jugaad_trader/ucli.py -------------------------------------------------------------------------------- /jugaad_trader/upstox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/jugaad_trader/upstox.py -------------------------------------------------------------------------------- /jugaad_trader/util.py: -------------------------------------------------------------------------------- 1 | CLI_NAME = "jtrader" 2 | -------------------------------------------------------------------------------- /jugaad_trader/zcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/jugaad_trader/zcli.py -------------------------------------------------------------------------------- /jugaad_trader/zerodha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/jugaad_trader/zerodha.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | twine -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/tests/test_console.py -------------------------------------------------------------------------------- /tests/test_zerodha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jugaad-py/jugaad-trader/HEAD/tests/test_zerodha.py --------------------------------------------------------------------------------