double cashValuePTick = TickSize * Instrument.MasterInstrument.PointValue;
if (Position.MarketPosition == MarketPosition.Long && BarsSinceEntry() > 1 )
{
SetStopLoss("", CalculationMode.Price, Low[1] - TickSize*1, false);
}
{
SetStopLoss("", CalculationMode.Price, Low[1] - TickSize*1, false);
}
I can't get anything to work though... so please help as this should finish this and get me back to trading

Comment