├── .gitignore ├── README.md ├── data └── spy_2000-2020.csv ├── requirements.txt ├── run_strategy.py └── strategies ├── BuyHold.py └── GoldenCross.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/crossover/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/crossover/HEAD/README.md -------------------------------------------------------------------------------- /data/spy_2000-2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/crossover/HEAD/data/spy_2000-2020.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/crossover/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/crossover/HEAD/run_strategy.py -------------------------------------------------------------------------------- /strategies/BuyHold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/crossover/HEAD/strategies/BuyHold.py -------------------------------------------------------------------------------- /strategies/GoldenCross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/crossover/HEAD/strategies/GoldenCross.py --------------------------------------------------------------------------------