I see some confusion going back to 2012 over running day only tests vs. minute by minute. The basic 2 questions are:
Can you use indicators calculated from daily data to screen / filter your universe of stocks you intend to trade intra-day
would it be correct to assume that Pipeline is doing exactly that, from the example:
sma_10 = SimpleMovingAverage(inputs=[USEquityPricing.close], window_length=10)
assuming it's running 1x per day, pre-open, it follows that you would be interested in a 10 day moving average. Does that mean the USEquityPricing is a database of day bars?
Can you trade / backtest using only day bars
- if so, how to implement opening and closing orders - OPG & MOC?
Any help is appreciated!