so I wrote this line of code:
close_price=prices(assets=symbols("jpm"), start="2000-01-01", end="2019-01-01")
and it will not work?
whereas quantopian has this line and it works:
aapl_close = prices(
assets=symbols('AAPL'),
start='2013-01-01',
end='2016-01-01',
)
my question is why is the quant code indented when you can do it all in one line, also how do you indent like that in the notebook.
Thanks.