I have a very perplexing situation! I wonder if you could kindly try to sort me out.
I have two similar but not identical strategies, call them A and B. The trades are entered perfectly in both (and I can see this with arrows and back colors).
In both A and B, the Initialize() sections are 100% identical as follows (the instrument is ^DJIA with 1000 range bars):
SetTrailStop("Longtrade", CalculationMode.Ticks, 1500, true);
SetTrailStop("Shorttrade", CalculationMode.Ticks, 1500, true);
SetProfitTarget("Longtrade", CalculationMode.Ticks, 3000);
SetProfitTarget("Shorttrade", CalculationMode.Ticks, 3000);
The trades are entered on both identically as follows:
EnterLong(1, "Longtrade"); and
EnterShort(1, "Shorttrade");
Please see the 2 attachments. When I put them thru the Analyzer, in A the auto trail works perfectly but in B, it hardly works at all. In both, the trail distance is set at 1500. This is correctly interpreted in A but not in B as you'll see.
Thanks very much in advance for your advice.

Comment