I use fib retracement tool levels in my strategy to move stops via SetStop() like so:
if (CrossAbove(Close, FiftyLevel, 1))
{
SetStopLoss("Long1", CalculationMode.Price, (ThirtyEightLevel - 2 * TickSize), false);
SetStopLoss("Long2", CalculationMode.Price, (ThirtyEightLevel - 2 * TickSize), false);
}
Any ideas or direction anyone could point?
Many thanks in advance!

Comment