I'm calling the OrderFlowCumulativeDelta() method by reference, cumulativeDelta.
I wish the syntax was explained. It's hard to discern what the params are.
My strategy has 3 data series:
- Primary (0): 15sec
- 1-second (1)
- 1-tick (2)
cumulativeDelta.Update(cumulativeDelta.BarsArray[2].Count - 1, 1);
cumulativeDelta.Update(BarsArray[2].Count - 1, 1);
Any help would be appreciated. Thanks!!
​

Comment