├── .gitignore ├── README.md ├── data └── userdata.csv ├── fyers_integration ├── README ├── __init__.py ├── auth │ ├── __init__.py │ ├── auth_server.py │ └── json_util.py ├── e_strategy.py ├── requirements.txt ├── run.py ├── sample │ ├── __init__.py │ ├── auth.py │ ├── auth_server_2.py │ ├── quote.py │ ├── run.py │ ├── test.py │ └── web_socket.py ├── single_run.py ├── strategy.py └── util.py ├── indicators ├── ATR.py ├── EMA.py ├── MACD.py ├── MFI.py ├── RSI.py ├── SuperTrend.py ├── VWAP.py └── __init__.py ├── main.py ├── requirements.txt └── zerodha ├── README.md ├── __init__.py ├── example ├── __init__.py ├── historical_data_test.py └── simple.py ├── setup.py ├── strategies ├── __init__.py ├── backtest.py ├── ema_crossover.py └── supertrend_strategy.py └── utils ├── __init__.py ├── auth.py ├── fetch_nse50_stocks.py ├── historical_data.py └── stock_screener.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/README.md -------------------------------------------------------------------------------- /data/userdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/data/userdata.csv -------------------------------------------------------------------------------- /fyers_integration/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/README -------------------------------------------------------------------------------- /fyers_integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fyers_integration/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fyers_integration/auth/auth_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/auth/auth_server.py -------------------------------------------------------------------------------- /fyers_integration/auth/json_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/auth/json_util.py -------------------------------------------------------------------------------- /fyers_integration/e_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/e_strategy.py -------------------------------------------------------------------------------- /fyers_integration/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/requirements.txt -------------------------------------------------------------------------------- /fyers_integration/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/run.py -------------------------------------------------------------------------------- /fyers_integration/sample/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fyers_integration/sample/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/sample/auth.py -------------------------------------------------------------------------------- /fyers_integration/sample/auth_server_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/sample/auth_server_2.py -------------------------------------------------------------------------------- /fyers_integration/sample/quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/sample/quote.py -------------------------------------------------------------------------------- /fyers_integration/sample/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/sample/run.py -------------------------------------------------------------------------------- /fyers_integration/sample/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/sample/test.py -------------------------------------------------------------------------------- /fyers_integration/sample/web_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/sample/web_socket.py -------------------------------------------------------------------------------- /fyers_integration/single_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/single_run.py -------------------------------------------------------------------------------- /fyers_integration/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/strategy.py -------------------------------------------------------------------------------- /fyers_integration/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/fyers_integration/util.py -------------------------------------------------------------------------------- /indicators/ATR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/indicators/ATR.py -------------------------------------------------------------------------------- /indicators/EMA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/indicators/EMA.py -------------------------------------------------------------------------------- /indicators/MACD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/indicators/MACD.py -------------------------------------------------------------------------------- /indicators/MFI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/indicators/MFI.py -------------------------------------------------------------------------------- /indicators/RSI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/indicators/RSI.py -------------------------------------------------------------------------------- /indicators/SuperTrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/indicators/SuperTrend.py -------------------------------------------------------------------------------- /indicators/VWAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/indicators/VWAP.py -------------------------------------------------------------------------------- /indicators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | 2 | if __name__ == '__main__': 3 | print("Starting..") -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/requirements.txt -------------------------------------------------------------------------------- /zerodha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/zerodha/README.md -------------------------------------------------------------------------------- /zerodha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zerodha/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zerodha/example/historical_data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/zerodha/example/historical_data_test.py -------------------------------------------------------------------------------- /zerodha/example/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/zerodha/example/simple.py -------------------------------------------------------------------------------- /zerodha/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/zerodha/setup.py -------------------------------------------------------------------------------- /zerodha/strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zerodha/strategies/backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/zerodha/strategies/backtest.py -------------------------------------------------------------------------------- /zerodha/strategies/ema_crossover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/zerodha/strategies/ema_crossover.py -------------------------------------------------------------------------------- /zerodha/strategies/supertrend_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/zerodha/strategies/supertrend_strategy.py -------------------------------------------------------------------------------- /zerodha/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zerodha/utils/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/zerodha/utils/auth.py -------------------------------------------------------------------------------- /zerodha/utils/fetch_nse50_stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/zerodha/utils/fetch_nse50_stocks.py -------------------------------------------------------------------------------- /zerodha/utils/historical_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/zerodha/utils/historical_data.py -------------------------------------------------------------------------------- /zerodha/utils/stock_screener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanshur/algotrading/HEAD/zerodha/utils/stock_screener.py --------------------------------------------------------------------------------