Here are the different algorithms used in the presentation for the Quantopian Open Hackathon
Session 1: Momentum
Tasks:
Add more securities to the algorithm to create a basket of stocks.
- Try manually adding stocks to a list using symbols()
- Try creating a random bundle by using set_universe()
- Try manually adding stocks to a list using symbols()
Use a more robust ordering function.
- Try order_target_percent() or order_target_value()
- Tip: Remember to check for open orders! Using: if get_open_orders: return
- Try order_target_percent() or order_target_value()
Schedule a specific day or time to rebalance your portfolio schedule_function() lets you
Get stuck? Use the built-in debugger to find the error source!