├── .gitignore ├── Auto_Trader ├── Build_Master.py ├── FetchPricesKite.py ├── FetchPricesYfinance.py ├── KITE_TRIGGER_ORDER.py ├── RULE_SET_2.py ├── RULE_SET_7.py ├── Request_Token.py ├── StrongFundamentalsStockList.py ├── TelegramLink.py ├── __init__.py ├── kite_ticker.py ├── rt_compute.py ├── updater.py └── utils.py ├── README.md ├── __init__.py ├── requirements.txt └── wednesday.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/.gitignore -------------------------------------------------------------------------------- /Auto_Trader/Build_Master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/Build_Master.py -------------------------------------------------------------------------------- /Auto_Trader/FetchPricesKite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/FetchPricesKite.py -------------------------------------------------------------------------------- /Auto_Trader/FetchPricesYfinance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/FetchPricesYfinance.py -------------------------------------------------------------------------------- /Auto_Trader/KITE_TRIGGER_ORDER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/KITE_TRIGGER_ORDER.py -------------------------------------------------------------------------------- /Auto_Trader/RULE_SET_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/RULE_SET_2.py -------------------------------------------------------------------------------- /Auto_Trader/RULE_SET_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/RULE_SET_7.py -------------------------------------------------------------------------------- /Auto_Trader/Request_Token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/Request_Token.py -------------------------------------------------------------------------------- /Auto_Trader/StrongFundamentalsStockList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/StrongFundamentalsStockList.py -------------------------------------------------------------------------------- /Auto_Trader/TelegramLink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/TelegramLink.py -------------------------------------------------------------------------------- /Auto_Trader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/__init__.py -------------------------------------------------------------------------------- /Auto_Trader/kite_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/kite_ticker.py -------------------------------------------------------------------------------- /Auto_Trader/rt_compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/rt_compute.py -------------------------------------------------------------------------------- /Auto_Trader/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/updater.py -------------------------------------------------------------------------------- /Auto_Trader/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/Auto_Trader/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/requirements.txt -------------------------------------------------------------------------------- /wednesday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Great-One/Auto_Trader/HEAD/wednesday.py --------------------------------------------------------------------------------