Looking for pointers on how to handle the above situation gracefully?
The way I tried to handle it for long positions is:
trailStopPrice = ParabolicSAR(0.02, 0.2, 0.02)[0];
if (trailStopPrice < GetCurrentBid())
{ SetStopLoss("StopLoss",CalculationMode.Price,trail StopPrice);
}

Comment