Problems:
- ATM strategy is not and will not be a saved template previously used. Currently, the only way I see to call an ATM strategy is use its string name as a parameter.
- According to the documentation, if the ATM strategy is not entered correctly, it may not cancel correctly possibly leaving stray orders.
Questions:
1) Is it possible to call the ATM form, adjust all of the values, then submit the form just like clicking ok?
2) If #1 is not possible, what about AtmStrategy = new AtmStrategy() { ...intialize all of the properties };
3) With either of these methods, will the atm strategy currently named "<Custom>" get renamed then tracked correctly by NT? I assume that underneath, NT checks for the atm name "<Custom>" then changes that to the next psuedo atm and inserts that into the .sdb
4) Are there specific events that I would need to hook up to for this to work properly?
Reasons/Why:
My strategy is a harmonic pattern strategy which calculates target1, target2, and initial stoploss based on the size and type of pattern. Once target1 is achieved, the ATM should move the initial stoploss to the entry price.
Comment