When placing an initial entry and stop on my strategy it works good. The stop is a order resident located at my broker (MBT) for one of my FOREX accounts. However, I have reversal actions that sometimes take place. When that action takes place, currently, I have a emergency stop and a trail stop that resides only within my strategy code and executes when those levels are hit.
Upon reversals my hard stop is not present and resident on my broker account like it is with my initial entries.
How do I make the reversals signals also place a actual stop (like the initial entries) as well? What is the easiest way to skin that cat?
Right now, here is what I have for my reversals and thinking about adding that last line (which is now just a //note). Is that last line what I need to do or some other code here (or code somewhere else) to make it place a regular stop upon reversals?
If ...xyz, then...
{
Print("Reverse BuyMkt");
EnterLong(DefaultQuantity, "Reverse BuyMkt");
//SetStopLoss("SellMkt", CalculationMode.Ticks, ShortStop, false);
}
Thanks folks!!!

Greg

Comment