I have a profit trigger for lifting my stop when the trade is going my way. I am trying to reduce my target when it goes against me too far. I had it working and it sort of works but I am missing somthing its probably staring me in the face and I cant see it.
I am using // to stop one from working while I test the other.
Any help appreciated.
Thanks Raef
if ( (BarsInProgress == 0)
&& barcounter > 3
&& Low[0] < Position.AvgPrice - (Triggerlevel2) * TickSize)
{
SetProfitTarget(CalculationMode.Price, (Position.AvgPrice + Trlveloffset2 * TickSize));
//ExitLongLimit (Position.AvgPrice - Trlveloffset2 * TickSize);
PlaySound(@"C:\Program Files (x86)\NinjaTrader 7\sounds\AutoBreakEven.wav");
}

Comment