I've run into an issue where the indicator I'm use to building my algorithm is based on UNADJUSTED closing prices.
To get around zipline's usage of clean/adjusted prices, I've loaded the closing prices for the securities I'm
running the algo on in my own csv file, and then loaded that file into quantopian with the fetcher(). All of
this runs properly, with the script creating the approrpriate buy/sell orders. However, the actual execution
price is still based on the Quantopian data.
Is there a way I can specify what the execution price should be? My algorithm is designed to utilize MOC orders,
so I need to execute my trades at the closing price. Or, is there a way to have Quantopian use the unadjusted data?
Thanks -