├── .gitignore ├── LICENSE ├── README.md ├── config_template.py ├── projects ├── __init__.py ├── account_dashboard │ └── app.py ├── atj_trading_legacy │ ├── __init__.py │ ├── backtester │ │ ├── __init__.py │ │ ├── backtest_template.ipynb │ │ └── sample_backtest.ipynb │ ├── mt5_trade_utils │ │ └── __init__.py │ └── trading_bot │ │ └── __init__.py ├── backtest_simulator │ ├── backtest_simulator.py │ ├── bollinger_backtest.ipynb │ └── bollinger_backtest.json ├── market_analysis_dashboard │ └── app.py ├── pa_analysis_server │ ├── PA_Recognition.mq5 │ ├── app.py │ └── request_test.ipynb ├── subscriber_bots │ └── ustec_otto │ │ ├── backtest.ipynb │ │ └── trading_bot.py └── trading_bots │ ├── DE40_prev_session_breakout │ └── de40_breakout_tradingbot.py │ ├── PA_Trading_bot │ └── breakout_bot.py │ └── US100_momentum_trading │ ├── count_closed_positions.py │ ├── sma_function.py │ ├── strategy_rules │ ├── trading_strategy.ipynb │ └── us100_momentum_bot.py ├── requirements.txt ├── research └── strategies │ └── promising_strategies │ ├── hour_gain_analysis.ipynb │ └── nj2.ipynb └── streams ├── 2024 10_Oct ├── 20241001 │ ├── backtest │ │ ├── de40_backtest.ipynb │ │ ├── eurusd_backtest.ipynb │ │ ├── us500_backtest.ipynb │ │ ├── usdjpy_backtest.ipynb │ │ └── xauusd_backtest.ipynb │ └── trading_bot.py ├── 20241003 │ └── breakouts_analysis.ipynb ├── 20241004 │ ├── de40_breakout_tradingbot.py │ ├── on_candle_tradingbot.py │ └── timezoneunification_mt5.ipynb ├── 20241007 │ ├── backtest_sp500_ivan_sherman.ipynb │ ├── backtest_sp500_sma_crossover.ipynb │ ├── example_python_schedule.py │ └── mt5_webapi.py ├── 20241009 │ ├── sr_analysis.ipynb │ └── sr_analysis_denisty.ipynb └── 20241010 │ ├── pa_backtest_simulation.py │ ├── pa_trading_bot.py │ ├── price_action_analysis.ipynb │ ├── price_action_analysis_candleintervals.ipynb │ └── price_action_patterns.ipynb ├── 2024 8_Aug ├── stream_20240801 │ ├── close_specific_position.py │ ├── content_plan │ ├── test_script.py │ ├── trade_management.ipynb │ └── trading_bot.py ├── stream_20240807 │ ├── bollinger_bot.py │ ├── content_plan │ ├── magic_separation.py │ ├── notebook_prep.ipynb │ └── sma_bot.py ├── stream_20240811 │ ├── backtest_template.ipynb │ ├── bollinger_backtest.ipynb │ ├── buy_and_hold_sp500.ipynb │ ├── content_plan │ ├── sma_backtest.ipynb │ └── sma_bt_animation.py ├── stream_20240813 │ ├── content_plan │ ├── stop_limit_order_script.py │ ├── trading_bots_multiple │ │ ├── sma_bot1.py │ │ └── sma_bot2.py │ └── trading_strategy.ipynb ├── stream_20240815 │ ├── content_plan │ └── modify_sl_tp.py ├── stream_20240819 │ └── content_plan ├── stream_20240821 │ ├── content_plan.md │ ├── sr_animation.py │ ├── sr_animation_presentation.py │ ├── support_resistance.ipynb │ └── support_resistance2.ipynb └── stream_20240826 │ ├── backtest_example.json │ ├── content_plan │ ├── example_backtest_animation.py │ ├── vwap_backtest.ipynb │ └── vwap_backtest.json ├── 2024 9_Sep ├── content_plan ├── stream_20240903 │ ├── btc_by_month.ipynb │ └── content_plan ├── stream_20240916 │ └── streamlabs_browser_widget │ │ ├── trading_stats_widget.py │ │ └── tv_widget.py ├── stream_20240923 │ └── market_analysis_dashboard │ │ └── app.py ├── stream_20240926 │ └── monte_carlo_simulation │ │ └── app.py └── stream_20240930 │ └── example_atj_algotradinglib.ipynb ├── content_suggestions └── content_plan └── templates └── backtest_template.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/README.md -------------------------------------------------------------------------------- /config_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/config_template.py -------------------------------------------------------------------------------- /projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/account_dashboard/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/account_dashboard/app.py -------------------------------------------------------------------------------- /projects/atj_trading_legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/atj_trading_legacy/backtester/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/atj_trading_legacy/backtester/__init__.py -------------------------------------------------------------------------------- /projects/atj_trading_legacy/backtester/backtest_template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/atj_trading_legacy/backtester/backtest_template.ipynb -------------------------------------------------------------------------------- /projects/atj_trading_legacy/backtester/sample_backtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/atj_trading_legacy/backtester/sample_backtest.ipynb -------------------------------------------------------------------------------- /projects/atj_trading_legacy/mt5_trade_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/atj_trading_legacy/mt5_trade_utils/__init__.py -------------------------------------------------------------------------------- /projects/atj_trading_legacy/trading_bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/atj_trading_legacy/trading_bot/__init__.py -------------------------------------------------------------------------------- /projects/backtest_simulator/backtest_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/backtest_simulator/backtest_simulator.py -------------------------------------------------------------------------------- /projects/backtest_simulator/bollinger_backtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/backtest_simulator/bollinger_backtest.ipynb -------------------------------------------------------------------------------- /projects/backtest_simulator/bollinger_backtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/backtest_simulator/bollinger_backtest.json -------------------------------------------------------------------------------- /projects/market_analysis_dashboard/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/market_analysis_dashboard/app.py -------------------------------------------------------------------------------- /projects/pa_analysis_server/PA_Recognition.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/pa_analysis_server/PA_Recognition.mq5 -------------------------------------------------------------------------------- /projects/pa_analysis_server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/pa_analysis_server/app.py -------------------------------------------------------------------------------- /projects/pa_analysis_server/request_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/pa_analysis_server/request_test.ipynb -------------------------------------------------------------------------------- /projects/subscriber_bots/ustec_otto/backtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/subscriber_bots/ustec_otto/backtest.ipynb -------------------------------------------------------------------------------- /projects/subscriber_bots/ustec_otto/trading_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/subscriber_bots/ustec_otto/trading_bot.py -------------------------------------------------------------------------------- /projects/trading_bots/DE40_prev_session_breakout/de40_breakout_tradingbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/trading_bots/DE40_prev_session_breakout/de40_breakout_tradingbot.py -------------------------------------------------------------------------------- /projects/trading_bots/PA_Trading_bot/breakout_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/trading_bots/PA_Trading_bot/breakout_bot.py -------------------------------------------------------------------------------- /projects/trading_bots/US100_momentum_trading/count_closed_positions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/trading_bots/US100_momentum_trading/count_closed_positions.py -------------------------------------------------------------------------------- /projects/trading_bots/US100_momentum_trading/sma_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/trading_bots/US100_momentum_trading/sma_function.py -------------------------------------------------------------------------------- /projects/trading_bots/US100_momentum_trading/strategy_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/trading_bots/US100_momentum_trading/strategy_rules -------------------------------------------------------------------------------- /projects/trading_bots/US100_momentum_trading/trading_strategy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/trading_bots/US100_momentum_trading/trading_strategy.ipynb -------------------------------------------------------------------------------- /projects/trading_bots/US100_momentum_trading/us100_momentum_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/projects/trading_bots/US100_momentum_trading/us100_momentum_bot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/requirements.txt -------------------------------------------------------------------------------- /research/strategies/promising_strategies/hour_gain_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/research/strategies/promising_strategies/hour_gain_analysis.ipynb -------------------------------------------------------------------------------- /research/strategies/promising_strategies/nj2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/research/strategies/promising_strategies/nj2.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241001/backtest/de40_backtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241001/backtest/de40_backtest.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241001/backtest/eurusd_backtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241001/backtest/eurusd_backtest.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241001/backtest/us500_backtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241001/backtest/us500_backtest.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241001/backtest/usdjpy_backtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241001/backtest/usdjpy_backtest.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241001/backtest/xauusd_backtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241001/backtest/xauusd_backtest.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241001/trading_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241001/trading_bot.py -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241003/breakouts_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241003/breakouts_analysis.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241004/de40_breakout_tradingbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241004/de40_breakout_tradingbot.py -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241004/on_candle_tradingbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241004/on_candle_tradingbot.py -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241004/timezoneunification_mt5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241004/timezoneunification_mt5.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241007/backtest_sp500_ivan_sherman.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241007/backtest_sp500_ivan_sherman.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241007/backtest_sp500_sma_crossover.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241007/backtest_sp500_sma_crossover.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241007/example_python_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241007/example_python_schedule.py -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241007/mt5_webapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241007/mt5_webapi.py -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241009/sr_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241009/sr_analysis.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241009/sr_analysis_denisty.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241009/sr_analysis_denisty.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241010/pa_backtest_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241010/pa_backtest_simulation.py -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241010/pa_trading_bot.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241010/price_action_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241010/price_action_analysis.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241010/price_action_analysis_candleintervals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241010/price_action_analysis_candleintervals.ipynb -------------------------------------------------------------------------------- /streams/2024 10_Oct/20241010/price_action_patterns.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 10_Oct/20241010/price_action_patterns.ipynb -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240801/close_specific_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240801/close_specific_position.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240801/content_plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240801/content_plan -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240801/test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240801/test_script.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240801/trade_management.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240801/trade_management.ipynb -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240801/trading_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240801/trading_bot.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240807/bollinger_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240807/bollinger_bot.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240807/content_plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240807/content_plan -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240807/magic_separation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240807/magic_separation.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240807/notebook_prep.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240807/notebook_prep.ipynb -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240807/sma_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240807/sma_bot.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240811/backtest_template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240811/backtest_template.ipynb -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240811/bollinger_backtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240811/bollinger_backtest.ipynb -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240811/buy_and_hold_sp500.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240811/buy_and_hold_sp500.ipynb -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240811/content_plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240811/content_plan -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240811/sma_backtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240811/sma_backtest.ipynb -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240811/sma_bt_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240811/sma_bt_animation.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240813/content_plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240813/content_plan -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240813/stop_limit_order_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240813/stop_limit_order_script.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240813/trading_bots_multiple/sma_bot1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240813/trading_bots_multiple/sma_bot1.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240813/trading_bots_multiple/sma_bot2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240813/trading_bots_multiple/sma_bot2.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240813/trading_strategy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240813/trading_strategy.ipynb -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240815/content_plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240815/content_plan -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240815/modify_sl_tp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240815/modify_sl_tp.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240819/content_plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240819/content_plan -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240821/content_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240821/content_plan.md -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240821/sr_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240821/sr_animation.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240821/sr_animation_presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240821/sr_animation_presentation.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240821/support_resistance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240821/support_resistance.ipynb -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240821/support_resistance2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240821/support_resistance2.ipynb -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240826/backtest_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240826/backtest_example.json -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240826/content_plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240826/content_plan -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240826/example_backtest_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240826/example_backtest_animation.py -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240826/vwap_backtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240826/vwap_backtest.ipynb -------------------------------------------------------------------------------- /streams/2024 8_Aug/stream_20240826/vwap_backtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 8_Aug/stream_20240826/vwap_backtest.json -------------------------------------------------------------------------------- /streams/2024 9_Sep/content_plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 9_Sep/content_plan -------------------------------------------------------------------------------- /streams/2024 9_Sep/stream_20240903/btc_by_month.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 9_Sep/stream_20240903/btc_by_month.ipynb -------------------------------------------------------------------------------- /streams/2024 9_Sep/stream_20240903/content_plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 9_Sep/stream_20240903/content_plan -------------------------------------------------------------------------------- /streams/2024 9_Sep/stream_20240916/streamlabs_browser_widget/trading_stats_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 9_Sep/stream_20240916/streamlabs_browser_widget/trading_stats_widget.py -------------------------------------------------------------------------------- /streams/2024 9_Sep/stream_20240916/streamlabs_browser_widget/tv_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 9_Sep/stream_20240916/streamlabs_browser_widget/tv_widget.py -------------------------------------------------------------------------------- /streams/2024 9_Sep/stream_20240923/market_analysis_dashboard/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 9_Sep/stream_20240923/market_analysis_dashboard/app.py -------------------------------------------------------------------------------- /streams/2024 9_Sep/stream_20240926/monte_carlo_simulation/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 9_Sep/stream_20240926/monte_carlo_simulation/app.py -------------------------------------------------------------------------------- /streams/2024 9_Sep/stream_20240930/example_atj_algotradinglib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/2024 9_Sep/stream_20240930/example_atj_algotradinglib.ipynb -------------------------------------------------------------------------------- /streams/content_suggestions/content_plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/content_suggestions/content_plan -------------------------------------------------------------------------------- /streams/templates/backtest_template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atj-khactu/atj-algotrading-edu/HEAD/streams/templates/backtest_template.ipynb --------------------------------------------------------------------------------