I dont understand why some trade is good, the SL and TP is correctly positioned but sometimes, with only 2 candle and 2 point my SL is touch .....
This is the code i wrote for SL and TP and BE:
EnterShortLimit(1, Close[0]);
SetProfitTarget(CalculationMode.Ticks, 80);
SetStopLoss(CalculationMode.Ticks, 40);
}
if (Position.MarketPosition == MarketPosition.Flat)
SetStopLoss(CalculationMode.Ticks, 80);
{
if((Close[0] < Position.AveragePrice + 10 * TickSize))
{
SetStopLoss(CalculationMode.Price, Position.AveragePrice + 0 * TickSize);

Comment