Thank you for your note.
Does your strategy contain an added data series?
To understand which bar is being referred to when your strategy places an order, you should print the bar index that the order is occurring on. In your strategy, add a print after you call your entry order that prints the bar index for when the order was placed. The print would look something like below. Also, ensure that the Data Box shows the bar index by right-clicking in the Data Box window and checking 'Show Bar Indexes'.
Print("Bar # " + CurrentBar);
After adding this print to your strategy, do you see the bar index print match with the Bar Index number in the Data Box window when your order is submitted? Does the High price for that bar index match your print for the High value? Does the Time of that bar index match with your print for the Time value?
I look forward to assisting further.

Comment