Calling the upper end of such congestion areas MaxRange, I put as Long Entry Condition:
if (Position.MarketPosition == MarketPosition.Flat
&& (InTrade == false)
&& Close[0] > MaxRange)
{
myEntryOrder = EnterLongLimit(0, true, DefaultQuantity, MaxRange, "LongLimit");
InTrade = true;
barNumberOfOrder = CurrentBar;
DrawDot("EntryLimit", true, 0, MaxRange, Color.Red);
}
As you can see from my 5 arrows in the chart below:
1st arrow: the trade is taken correctly
2nd arrow: the trade is not taken, but the Red Dot is drawn. Why the trade was not taken?
3rd arrow: trade is not taken. Why?
4th arrow: trade is not taken. Why?
Thank you

Comment