I trade S&P E-mini futures on a 15 minute time period.
For practicality, the profit target in this example is 10 points
my entry method is written as shown below:
-----------------------------
if ((GetCurrentBid >= (open[0] + (4 * TickSize)))
|| (GetCurrentAsk >= (open[0] + (4 * TickSize))))
{
EnterLong()
}
-----------------------------
This logic works fine; however, when my account is still in a position when the bar closes, my position is closed automatically before it reaches my profit target.
How do I keep my position open after a new bar appears?

Comment