I have a stop strategy that I would like to model in my strategy whereby a stop is moved X points when a Y price level has been hit (i.e., exactly like the ATM lets you do in via the dialog box --> ATM Strategy dialog box > Stop Strategy > "<Custom>" > Stop Strategy > Auto Trail (ticks) > Step 1: Stop loss, Frequency, and Profit Trigger (Here is the Support Documentation on Auto Trail).
So basically I would like to programmatically set the "Stop loss", "Frequency" and "Profit trigger". The NT Documentation has an example that says "Once our trade has 4 ticks profit, move our Stop Loss back 6 ticks and move it up for every additional 2 ticks in profit." So in this case the "Stop loss" would be equal to 6, the "Frequency" would be equal to 2 and the "Profit trigger" would be equal to 4.
For instance, let's say I enter long at 1750 and I set a profit target at 1780 and a stop at 1740. I then want to immediately move my stop to 1750 when price hits 1760, and then I want the stop to immediately move to 1760 when price hits 1770, etc. I do not want to wait for the bar to close for the stop move to occur.
Can I do the same thing programmatically in my strategy? In particular, I would really prefer to stick with the Managed Approach, but if I have to move into the more complex Unmanaged Approach so be it.
Thanks in advance for your help. I really appreciate it.
All best,
Aventeren

Comment