├── BacktesterLoop.py ├── CONTRIBUTING.md ├── DataDir └── AAPL.csv ├── DataHandler.py ├── Events.py ├── Example.png ├── Execution.py ├── Main.py ├── Performance.py ├── PlotPerformance.py ├── Portfolio.py ├── README.md ├── RiskManagement.py ├── Strategies ├── Buy_And_Hold_Strat.py ├── ETF_Forecast.py ├── Helper │ └── CreateLaggedSeries.py ├── MAC_Strat.py ├── OLS_MR_Strategy.py └── __init__.py └── Strategy.py /BacktesterLoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/BacktesterLoop.py -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DataDir/AAPL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/DataDir/AAPL.csv -------------------------------------------------------------------------------- /DataHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/DataHandler.py -------------------------------------------------------------------------------- /Events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Events.py -------------------------------------------------------------------------------- /Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Example.png -------------------------------------------------------------------------------- /Execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Execution.py -------------------------------------------------------------------------------- /Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Main.py -------------------------------------------------------------------------------- /Performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Performance.py -------------------------------------------------------------------------------- /PlotPerformance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/PlotPerformance.py -------------------------------------------------------------------------------- /Portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Portfolio.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/README.md -------------------------------------------------------------------------------- /RiskManagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/RiskManagement.py -------------------------------------------------------------------------------- /Strategies/Buy_And_Hold_Strat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Strategies/Buy_And_Hold_Strat.py -------------------------------------------------------------------------------- /Strategies/ETF_Forecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Strategies/ETF_Forecast.py -------------------------------------------------------------------------------- /Strategies/Helper/CreateLaggedSeries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Strategies/Helper/CreateLaggedSeries.py -------------------------------------------------------------------------------- /Strategies/MAC_Strat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Strategies/MAC_Strat.py -------------------------------------------------------------------------------- /Strategies/OLS_MR_Strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Strategies/OLS_MR_Strategy.py -------------------------------------------------------------------------------- /Strategies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Strategies/__init__.py -------------------------------------------------------------------------------- /Strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCico/Enhanced-Event-Driven-Backtester/HEAD/Strategy.py --------------------------------------------------------------------------------