Hello and thank everyone for responding trying to help me out.
I know my questions seems simple to most people. but not for me.
Let me explain a bit more what I am trying to understand regarding back testing with OHLC. I just want to fully grasp the how my back testing software works and understand so I don't make mistakes analyzing false strategy performance.
Strategy to be programmed (for example):
3 min bars
breakout system
if bar open and closes above line1 (line1 is some calculated price)
entry = buy limit order < = line1
stop loss = stop order 20 ticks
profit target = 40 ticks
vice versa for short.
Strategies will be processed at the close of each bar
Backtesting concern or questions:
1.
https://ninjatrader.com/support/helpGuides/nt7/?backtest_a_strategy.htm According to this document "During a backtest assumptions are made on the fill price of an order is based on the OHLC of a bar and the price of the order itself."
Question 2. Since only the OHLC (4 data points) of a 3 min bar is used in back test, does this mean that if my limit, profit target, or stop price is somewhere between these 4 data, points, I will not get a fill order?
For example during back testing:
Close of a 3 min bar gives a buy signal.
entry buy limit order = 53.52 or less
The next 3 min bar forming is
Open = 53.61
High = 53.68
Close = 53.56
Low = 53.44
Question
Will my order fill at 53.44 because according to the link above only OHLC data is used when running the back testing software?
Do you understand my confusion now?
Thank you for reading.