protected override void Initialize() { SetProfitTarget("ShortEntry", CalculationMode.Ticks, target); SetProfitTarget("LongEntry", CalculationMode.Ticks, target); SetStopLoss(stoploss, false); CalculateOnBarClose = true; EntryHandling = EntryHandling.AllEntries; } /// <summary> /// Called on each bar update event (incoming tick) /// </summary> protected override void OnBarUpdate() { if (Close[0]==High[0]) { EnterLong(1, "LongEntry"); }
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to adjust Strategy entered targets/stops
Collapse
X
-
How to adjust Strategy entered targets/stops
I'm creating my first strategy and have targets and stops included. However, I want to be able to modify the targets and stops during real-time trading. When I adjust them, they go back to the settings the strategy initially set them at once the current bar closes. How do I have the strategy enter the target and stop, but then allow me to change them on the DOM?
Code:Tags: None
-
Tdschultz,
Unfortunately this isn't possible without using the ATM approach.
For more information, please see the following link : http://www.ninjatrader.com/support/h...strategies.htm
There is a sample strategy that uses the ATM approach that comes default with NinjaTrader, it is located in Tools > Edit NinjaScript > Strategy > SampleATMStrategy
Please let me know if I may assist further.Adam P.NinjaTrader Customer Service
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by tkaboris, Yesterday, 02:40 PM
|
3 responses
13 views
0 likes
|
Last Post Today, 01:28 PM | ||
Started by itrade4food, 08-13-2021, 04:22 PM
|
18 responses
349 views
0 likes
|
Last Post Today, 01:21 PM | ||
Started by CamilaCalestini, Today, 01:04 PM
|
1 response
6 views
0 likes
|
Last Post Today, 01:13 PM | ||
Started by ark321, Yesterday, 07:30 PM
|
11 responses
34 views
0 likes
|
Last Post Today, 12:53 PM | ||
Started by M_ichel, Today, 12:25 PM
|
1 response
10 views
0 likes
|
Last Post Today, 12:39 PM |
Comment