When I run the code below, I get:
IndexError: index 0 is out of bounds for axis 0 with size 0
There was a runtime error on line 7.
Does history()
not work in before_trading_start()
?
# Put any initialization logic here. The context object will be passed to
# the other methods in your algorithm.
def initialize(context):
pass
def before_trading_start(context, data):
prices = history(30,'1d','price')
# Will be called on every trade event for the securities you specify.
def handle_data(context, data):
# Implement your algorithm logic here.
# data[sid(X)] holds the trade event data for that security.
# context.portfolio holds the current portfolio state.
# Place orders with the order(SID, amount) method.
# TODO: implement your own logic here.
order(sid(24), 50)