My primary data series is a 15m chart, but i want to enter based on any time within a 15m candle that the criteria is met
Here is my data series i am using:
AddDataSeries(BarsPeriodType.Minute, 15); // Use 15-minute bars AddDataSeries(Data.BarsPeriodType.Tick, 1); AddDataSeries(BarsPeriodType.Tick, 1);
And this is what I am using for entry:
EnterLong(1, "Long_" + i); // Place a market order to enter long position

Comment