├── Fyers - Scrips blocked for Intraday trading - Equity.csv ├── LICENSE ├── NSE_CM.csv ├── README.md ├── __init__.py ├── __pycache__ ├── create_database.cpython-38.pyc ├── login_fyers.cpython-38.pyc └── zerodha_own_api.cpython-38.pyc ├── accounts_database.py ├── check_database.py ├── common ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── backtestingsuper.cpython-38.pyc │ ├── find_stock_supertrend_values.py │ ├── indicator.cpython-38.pyc │ ├── indicator.cpython-39.pyc │ ├── message.cpython-38.pyc │ ├── message.cpython-39.pyc │ ├── stock_selection_features_volume.py │ └── zipline.cpython-38.pyc ├── backtest_macd.py ├── backtestesidewayssupertrend.py ├── backtestingmacd.py ├── backtestingpy.py ├── backtestingrsi.py ├── backtestingsuper.py ├── backtestsuperrsi.py ├── backtestsupersma.py ├── backtestsupertrendrsi.py ├── bot.py ├── bundle.py ├── find_stock_supertrend_values.py ├── find_stock_supertrend_values_shortterm.py ├── find_supertrend_reverse.py ├── find_supertrend_thread.py ├── indicator.py ├── message.py ├── optimize_supertrend.py ├── pyalgotradesample.py ├── stock_selection_features_atr.py ├── stock_selection_features_volume.py ├── stock_selection_nifty200_volume.py ├── supertrendadx.py └── topgainers.py ├── databasestart.txt ├── fyers ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── accounts_login.cpython-38.pyc │ ├── database.cpython-38.pyc │ ├── history.cpython-38.pyc │ ├── insert_database.cpython-38.pyc │ ├── insert_database.cpython-39.pyc │ ├── live.cpython-38.pyc │ ├── login.cpython-38.pyc │ ├── login_fyers.cpython-38.pyc │ ├── look_database.cpython-38.pyc │ ├── order.cpython-38.pyc │ ├── quote.cpython-38.pyc │ ├── script.cpython-38.pyc │ ├── stoploss_percentage.cpython-38.pyc │ └── telegram.cpython-38.pyc ├── accounts_database.py ├── accounts_login.py ├── broker_allow_stocks.py ├── cred.csv ├── database.py ├── fyers_socket.log ├── history.py ├── insert_database.py ├── intraday_allow_check.py ├── live.py ├── login.py ├── login_fyers.py ├── look_database.py ├── order.py ├── quote.py ├── script.py └── stoploss_percentage.py ├── geckodriver.log ├── kite ├── Backtester.py ├── Brokers │ ├── MarketSimulator.py │ ├── Zerodha.py │ ├── __init__.py │ └── __pycache__ │ │ ├── Zerodha.cpython-38.pyc │ │ ├── Zerodha.cpython-39.pyc │ │ ├── __init__.cpython-38.pyc │ │ └── __init__.cpython-39.pyc ├── Loggers │ ├── StockDataLogger.py │ └── __init__.py ├── README.md ├── Stock.py ├── ZerodhaAutomationExample.py └── requirments.text ├── kite_fun.py ├── kite_price_check.py ├── kite_strategy.py ├── login_fyers.py ├── scripmaster-csv-format.csv ├── stock_selection.txt ├── supertrend_selection.csv ├── supertrend_txt ├── 20MICRONS.txt ├── ABCAPITAL.txt ├── ABFRL.txt ├── ALOKINDS.txt ├── APOLSINHOT.txt ├── BAJAJELEC.txt ├── BALRAMCHIN.txt ├── BANDHANBNK.txt ├── BANKBARODA.txt ├── BEML.txt ├── BOROLTD.txt ├── BPCL.txt ├── CANBK.txt ├── CARBORUNIV.txt ├── CHAMBLFERT.txt ├── ECLERX.txt ├── GLAXO.txt ├── GNFC.txt ├── HDFCLIFE.txt ├── HINDCOPPER.txt ├── HINDPETRO.txt ├── ICICIBANK.txt ├── INDHOTEL.txt ├── INDIACEM.txt ├── INDUSTOWER.txt ├── LAOPALA.txt ├── MINDAIND.txt ├── NETWORK18.txt ├── OBEROIRLTY.txt ├── POLYPLEX.txt ├── POONAWALLA.txt ├── PVR.txt ├── RBLBANK.txt ├── REDINGTON.txt ├── SEQUENT.txt ├── SUNTECK.txt ├── TATAMOTORS.txt ├── TCIEXP.txt ├── TCS.txt ├── TTML.txt ├── TV18BRDCST.txt ├── TWL.txt ├── WELSPUNIND.txt ├── WIPRO.txt ├── ZEEL.txt └── ZEELEARN.txt ├── supertrend_values.txt ├── supertrend_values_default.txt ├── test_session123123123.session └── zerodha_own_api.py /Fyers - Scrips blocked for Intraday trading - Equity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/Fyers - Scrips blocked for Intraday trading - Equity.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/LICENSE -------------------------------------------------------------------------------- /NSE_CM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/NSE_CM.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__pycache__/create_database.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/__pycache__/create_database.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/login_fyers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/__pycache__/login_fyers.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/zerodha_own_api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/__pycache__/zerodha_own_api.cpython-38.pyc -------------------------------------------------------------------------------- /accounts_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/accounts_database.py -------------------------------------------------------------------------------- /check_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/check_database.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /common/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /common/__pycache__/backtestingsuper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/__pycache__/backtestingsuper.cpython-38.pyc -------------------------------------------------------------------------------- /common/__pycache__/find_stock_supertrend_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/__pycache__/find_stock_supertrend_values.py -------------------------------------------------------------------------------- /common/__pycache__/indicator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/__pycache__/indicator.cpython-38.pyc -------------------------------------------------------------------------------- /common/__pycache__/indicator.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/__pycache__/indicator.cpython-39.pyc -------------------------------------------------------------------------------- /common/__pycache__/message.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/__pycache__/message.cpython-38.pyc -------------------------------------------------------------------------------- /common/__pycache__/message.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/__pycache__/message.cpython-39.pyc -------------------------------------------------------------------------------- /common/__pycache__/stock_selection_features_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/__pycache__/stock_selection_features_volume.py -------------------------------------------------------------------------------- /common/__pycache__/zipline.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/__pycache__/zipline.cpython-38.pyc -------------------------------------------------------------------------------- /common/backtest_macd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/backtest_macd.py -------------------------------------------------------------------------------- /common/backtestesidewayssupertrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/backtestesidewayssupertrend.py -------------------------------------------------------------------------------- /common/backtestingmacd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/backtestingmacd.py -------------------------------------------------------------------------------- /common/backtestingpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/backtestingpy.py -------------------------------------------------------------------------------- /common/backtestingrsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/backtestingrsi.py -------------------------------------------------------------------------------- /common/backtestingsuper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/backtestingsuper.py -------------------------------------------------------------------------------- /common/backtestsuperrsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/backtestsuperrsi.py -------------------------------------------------------------------------------- /common/backtestsupersma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/backtestsupersma.py -------------------------------------------------------------------------------- /common/backtestsupertrendrsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/backtestsupertrendrsi.py -------------------------------------------------------------------------------- /common/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/bot.py -------------------------------------------------------------------------------- /common/bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/bundle.py -------------------------------------------------------------------------------- /common/find_stock_supertrend_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/find_stock_supertrend_values.py -------------------------------------------------------------------------------- /common/find_stock_supertrend_values_shortterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/find_stock_supertrend_values_shortterm.py -------------------------------------------------------------------------------- /common/find_supertrend_reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/find_supertrend_reverse.py -------------------------------------------------------------------------------- /common/find_supertrend_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/find_supertrend_thread.py -------------------------------------------------------------------------------- /common/indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/indicator.py -------------------------------------------------------------------------------- /common/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/message.py -------------------------------------------------------------------------------- /common/optimize_supertrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/optimize_supertrend.py -------------------------------------------------------------------------------- /common/pyalgotradesample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/pyalgotradesample.py -------------------------------------------------------------------------------- /common/stock_selection_features_atr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/stock_selection_features_atr.py -------------------------------------------------------------------------------- /common/stock_selection_features_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/stock_selection_features_volume.py -------------------------------------------------------------------------------- /common/stock_selection_nifty200_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/stock_selection_nifty200_volume.py -------------------------------------------------------------------------------- /common/supertrendadx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/supertrendadx.py -------------------------------------------------------------------------------- /common/topgainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/common/topgainers.py -------------------------------------------------------------------------------- /databasestart.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /fyers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fyers/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/accounts_login.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/accounts_login.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/database.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/database.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/history.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/history.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/insert_database.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/insert_database.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/insert_database.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/insert_database.cpython-39.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/live.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/live.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/login.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/login.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/login_fyers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/login_fyers.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/look_database.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/look_database.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/order.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/order.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/quote.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/quote.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/script.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/script.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/stoploss_percentage.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/stoploss_percentage.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/__pycache__/telegram.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/__pycache__/telegram.cpython-38.pyc -------------------------------------------------------------------------------- /fyers/accounts_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/accounts_database.py -------------------------------------------------------------------------------- /fyers/accounts_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/accounts_login.py -------------------------------------------------------------------------------- /fyers/broker_allow_stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/broker_allow_stocks.py -------------------------------------------------------------------------------- /fyers/cred.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/cred.csv -------------------------------------------------------------------------------- /fyers/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/database.py -------------------------------------------------------------------------------- /fyers/fyers_socket.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/fyers_socket.log -------------------------------------------------------------------------------- /fyers/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/history.py -------------------------------------------------------------------------------- /fyers/insert_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/insert_database.py -------------------------------------------------------------------------------- /fyers/intraday_allow_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/intraday_allow_check.py -------------------------------------------------------------------------------- /fyers/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/live.py -------------------------------------------------------------------------------- /fyers/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/login.py -------------------------------------------------------------------------------- /fyers/login_fyers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/login_fyers.py -------------------------------------------------------------------------------- /fyers/look_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/look_database.py -------------------------------------------------------------------------------- /fyers/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/order.py -------------------------------------------------------------------------------- /fyers/quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/quote.py -------------------------------------------------------------------------------- /fyers/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/script.py -------------------------------------------------------------------------------- /fyers/stoploss_percentage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/fyers/stoploss_percentage.py -------------------------------------------------------------------------------- /geckodriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/geckodriver.log -------------------------------------------------------------------------------- /kite/Backtester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite/Backtester.py -------------------------------------------------------------------------------- /kite/Brokers/MarketSimulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite/Brokers/MarketSimulator.py -------------------------------------------------------------------------------- /kite/Brokers/Zerodha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite/Brokers/Zerodha.py -------------------------------------------------------------------------------- /kite/Brokers/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /kite/Brokers/__pycache__/Zerodha.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite/Brokers/__pycache__/Zerodha.cpython-38.pyc -------------------------------------------------------------------------------- /kite/Brokers/__pycache__/Zerodha.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite/Brokers/__pycache__/Zerodha.cpython-39.pyc -------------------------------------------------------------------------------- /kite/Brokers/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite/Brokers/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /kite/Brokers/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite/Brokers/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /kite/Loggers/StockDataLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite/Loggers/StockDataLogger.py -------------------------------------------------------------------------------- /kite/Loggers/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /kite/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /kite/Stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite/Stock.py -------------------------------------------------------------------------------- /kite/ZerodhaAutomationExample.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /kite/requirments.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite/requirments.text -------------------------------------------------------------------------------- /kite_fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite_fun.py -------------------------------------------------------------------------------- /kite_price_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite_price_check.py -------------------------------------------------------------------------------- /kite_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/kite_strategy.py -------------------------------------------------------------------------------- /login_fyers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/login_fyers.py -------------------------------------------------------------------------------- /scripmaster-csv-format.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/scripmaster-csv-format.csv -------------------------------------------------------------------------------- /stock_selection.txt: -------------------------------------------------------------------------------- 1 | TATA MOTORS 2 | HDFC 3 | HINDPETRO 4 | BDL 5 | JUBLFOOD 6 | AAVAS 7 | 8 | -------------------------------------------------------------------------------- /supertrend_selection.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/supertrend_selection.csv -------------------------------------------------------------------------------- /supertrend_txt/20MICRONS.txt: -------------------------------------------------------------------------------- 1 | 117 2 | 5.3 -------------------------------------------------------------------------------- /supertrend_txt/ABCAPITAL.txt: -------------------------------------------------------------------------------- 1 | 904 2 | 5.4 -------------------------------------------------------------------------------- /supertrend_txt/ABFRL.txt: -------------------------------------------------------------------------------- 1 | 160 2 | 6.9 -------------------------------------------------------------------------------- /supertrend_txt/ALOKINDS.txt: -------------------------------------------------------------------------------- 1 | 678 2 | 7.6 -------------------------------------------------------------------------------- /supertrend_txt/APOLSINHOT.txt: -------------------------------------------------------------------------------- 1 | 998 2 | 7.6 -------------------------------------------------------------------------------- /supertrend_txt/BAJAJELEC.txt: -------------------------------------------------------------------------------- 1 | 736 2 | 5.1 -------------------------------------------------------------------------------- /supertrend_txt/BALRAMCHIN.txt: -------------------------------------------------------------------------------- 1 | 72 2 | 5.9 -------------------------------------------------------------------------------- /supertrend_txt/BANDHANBNK.txt: -------------------------------------------------------------------------------- 1 | 960 2 | 5.5 -------------------------------------------------------------------------------- /supertrend_txt/BANKBARODA.txt: -------------------------------------------------------------------------------- 1 | 704 2 | 6.6 -------------------------------------------------------------------------------- /supertrend_txt/BEML.txt: -------------------------------------------------------------------------------- 1 | 233 2 | 5.6 -------------------------------------------------------------------------------- /supertrend_txt/BOROLTD.txt: -------------------------------------------------------------------------------- 1 | 455 2 | 5.9 -------------------------------------------------------------------------------- /supertrend_txt/BPCL.txt: -------------------------------------------------------------------------------- 1 | 354 2 | 5.0 -------------------------------------------------------------------------------- /supertrend_txt/CANBK.txt: -------------------------------------------------------------------------------- 1 | 772 2 | 5.1 -------------------------------------------------------------------------------- /supertrend_txt/CARBORUNIV.txt: -------------------------------------------------------------------------------- 1 | 602 2 | 6.6 -------------------------------------------------------------------------------- /supertrend_txt/CHAMBLFERT.txt: -------------------------------------------------------------------------------- 1 | 127 2 | 5.0 -------------------------------------------------------------------------------- /supertrend_txt/ECLERX.txt: -------------------------------------------------------------------------------- 1 | 106 2 | 7.1 -------------------------------------------------------------------------------- /supertrend_txt/GLAXO.txt: -------------------------------------------------------------------------------- 1 | 584 2 | 7.9 -------------------------------------------------------------------------------- /supertrend_txt/GNFC.txt: -------------------------------------------------------------------------------- 1 | 41 2 | 7.6 -------------------------------------------------------------------------------- /supertrend_txt/HDFCLIFE.txt: -------------------------------------------------------------------------------- 1 | 343 2 | 4.9 -------------------------------------------------------------------------------- /supertrend_txt/HINDCOPPER.txt: -------------------------------------------------------------------------------- 1 | 523 2 | 5.7 -------------------------------------------------------------------------------- /supertrend_txt/HINDPETRO.txt: -------------------------------------------------------------------------------- 1 | 995 2 | 4.9 -------------------------------------------------------------------------------- /supertrend_txt/ICICIBANK.txt: -------------------------------------------------------------------------------- 1 | 963 2 | 4.5 -------------------------------------------------------------------------------- /supertrend_txt/INDHOTEL.txt: -------------------------------------------------------------------------------- 1 | 890 2 | 3.5 -------------------------------------------------------------------------------- /supertrend_txt/INDIACEM.txt: -------------------------------------------------------------------------------- 1 | 215 2 | 6.4 -------------------------------------------------------------------------------- /supertrend_txt/INDUSTOWER.txt: -------------------------------------------------------------------------------- 1 | 169 2 | 7.4 -------------------------------------------------------------------------------- /supertrend_txt/LAOPALA.txt: -------------------------------------------------------------------------------- 1 | 803 2 | 5.3 -------------------------------------------------------------------------------- /supertrend_txt/MINDAIND.txt: -------------------------------------------------------------------------------- 1 | 393 2 | 7.6 -------------------------------------------------------------------------------- /supertrend_txt/NETWORK18.txt: -------------------------------------------------------------------------------- 1 | 187 2 | 7.5 -------------------------------------------------------------------------------- /supertrend_txt/OBEROIRLTY.txt: -------------------------------------------------------------------------------- 1 | 945 2 | 5.9 -------------------------------------------------------------------------------- /supertrend_txt/POLYPLEX.txt: -------------------------------------------------------------------------------- 1 | 42 2 | 6.1 -------------------------------------------------------------------------------- /supertrend_txt/POONAWALLA.txt: -------------------------------------------------------------------------------- 1 | 772 2 | 6.9 -------------------------------------------------------------------------------- /supertrend_txt/PVR.txt: -------------------------------------------------------------------------------- 1 | 650 2 | 6.8 -------------------------------------------------------------------------------- /supertrend_txt/RBLBANK.txt: -------------------------------------------------------------------------------- 1 | 632 2 | 7.9 -------------------------------------------------------------------------------- /supertrend_txt/REDINGTON.txt: -------------------------------------------------------------------------------- 1 | 631 2 | 5.0 -------------------------------------------------------------------------------- /supertrend_txt/SEQUENT.txt: -------------------------------------------------------------------------------- 1 | 413 2 | 6.2 -------------------------------------------------------------------------------- /supertrend_txt/SUNTECK.txt: -------------------------------------------------------------------------------- 1 | 928 2 | 5.9 -------------------------------------------------------------------------------- /supertrend_txt/TATAMOTORS.txt: -------------------------------------------------------------------------------- 1 | 876 2 | 3.4 -------------------------------------------------------------------------------- /supertrend_txt/TCIEXP.txt: -------------------------------------------------------------------------------- 1 | 60 2 | 6.2 -------------------------------------------------------------------------------- /supertrend_txt/TCS.txt: -------------------------------------------------------------------------------- 1 | 899 2 | 7.5 -------------------------------------------------------------------------------- /supertrend_txt/TTML.txt: -------------------------------------------------------------------------------- 1 | 889 2 | 5.3 -------------------------------------------------------------------------------- /supertrend_txt/TV18BRDCST.txt: -------------------------------------------------------------------------------- 1 | 91 2 | 7.7 -------------------------------------------------------------------------------- /supertrend_txt/TWL.txt: -------------------------------------------------------------------------------- 1 | 61 2 | 6.5 -------------------------------------------------------------------------------- /supertrend_txt/WELSPUNIND.txt: -------------------------------------------------------------------------------- 1 | 474 2 | 6.1 -------------------------------------------------------------------------------- /supertrend_txt/WIPRO.txt: -------------------------------------------------------------------------------- 1 | 78 2 | 5.5 -------------------------------------------------------------------------------- /supertrend_txt/ZEEL.txt: -------------------------------------------------------------------------------- 1 | 166 2 | 6.3 -------------------------------------------------------------------------------- /supertrend_txt/ZEELEARN.txt: -------------------------------------------------------------------------------- 1 | 166 2 | 6.3 -------------------------------------------------------------------------------- /supertrend_values.txt: -------------------------------------------------------------------------------- 1 | 35 2 | 5 3 | -------------------------------------------------------------------------------- /supertrend_values_default.txt: -------------------------------------------------------------------------------- 1 | 80 2 | 3.6 3 | -------------------------------------------------------------------------------- /test_session123123123.session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/test_session123123123.session -------------------------------------------------------------------------------- /zerodha_own_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srikar-kodakandla/fully-automated-nifty-options-trading/HEAD/zerodha_own_api.py --------------------------------------------------------------------------------