├── LICENSE ├── README.md ├── configs ├── config.py └── utils.py ├── data ├── company_tickers.json ├── duol_option_chains.json ├── duol_price_history.json ├── earnings_calendar.json └── jsons_for_tests.py ├── main.py ├── options ├── option_chains.py ├── options.py └── stocks.py ├── requirements.txt ├── test ├── test_option_chains.py ├── test_options.py └── test_utils.py └── trading ├── earnings_calendar.py ├── stock_screener.py ├── theta_analyzer.py └── trade_options.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/README.md -------------------------------------------------------------------------------- /configs/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/configs/config.py -------------------------------------------------------------------------------- /configs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/configs/utils.py -------------------------------------------------------------------------------- /data/company_tickers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/data/company_tickers.json -------------------------------------------------------------------------------- /data/duol_option_chains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/data/duol_option_chains.json -------------------------------------------------------------------------------- /data/duol_price_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/data/duol_price_history.json -------------------------------------------------------------------------------- /data/earnings_calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/data/earnings_calendar.json -------------------------------------------------------------------------------- /data/jsons_for_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/data/jsons_for_tests.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/main.py -------------------------------------------------------------------------------- /options/option_chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/options/option_chains.py -------------------------------------------------------------------------------- /options/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/options/options.py -------------------------------------------------------------------------------- /options/stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/options/stocks.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/test_option_chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/test/test_option_chains.py -------------------------------------------------------------------------------- /test/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/test/test_options.py -------------------------------------------------------------------------------- /test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/test/test_utils.py -------------------------------------------------------------------------------- /trading/earnings_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/trading/earnings_calendar.py -------------------------------------------------------------------------------- /trading/stock_screener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/trading/stock_screener.py -------------------------------------------------------------------------------- /trading/theta_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/trading/theta_analyzer.py -------------------------------------------------------------------------------- /trading/trade_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluedabadi/SchwabAutoTrading/HEAD/trading/trade_options.py --------------------------------------------------------------------------------