I'm developing a strategy that uses multi-time frames and multi-data series.
I know that you can reference the barsInProgressIndex when submitting an order. As seen below:
EnterLong(int barsInProgressIndex, int quantity, string signalName)
AtmStrategyCreate(OrderAction action, OrderType orderType, double limitPrice, double stopPrice, TimeInForce timeInForce, string orderId, string strategyTemplateName, string atmStrategyId, Action<Cbi.ErrorCode, string> callback)
Thank you!

Comment