How can i add a delay so if my bot looses a trade it pauses for 1 minute before resuming
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Pause after loss
Collapse
X
-
Pause after loss
Hey Team,
How can i add a delay so if my bot looses a trade it pauses for 1 minute before resumingTags: None
-
Hello RookieKiwi,
You can use bools to enable / disable actions like submitting orders.
Below are links to a few examples.
Hello, I've updated the DailyLossLimit and DailyLosLimitMultiTrade examples that were posted on the forum for NinjaTrader 7 for NinjaTrader 8. These are often requested and I felt they are good examples to have for NT8. DailyLossLimitExample_NT7 - http://ninjatrader.com/support/forum...241#post451241 (http://ninjatrader
Hi, To improve a strategy, I would like the condition to enter a trade to be triggered only after a second crossing happens. Meaning, for instance we have a sthocastics crossing, but the strategy would only trigger when a crossing between 2 emas happen. Would the looking back N bars work? Can it be done within the builder
In OnPositionUpdate(), you can check the SystemPerformance collection to see if the last trade was a winner or loser.
For having a 1 minute timer, the easiest way would be adding a 1 minute series with AddDataSeries(),
After the trade is available in the SystemPerformance check if it is a loss and set the bool to true.
In OnBarUpdate() when BarsInProgress is 0, the chart series or primary series, you can have the logic for entering orders.
When the added series updates OnBarUpdate with BarsInProgress with a value of 1, meaning the 1 minute series bar has closed, set this back to false to reset and allow for a new order.
An example of AddDataSeries() is in the help guide as a reference sample.
Note, if you are using Calculate.OnPriceChange or OnEachTick, it would also be necessary to check the BarsArray[1].FirstTickOfBar is true as well within the reset condition.
Chelsea B.NinjaTrader Customer Service
- Likes 1
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
44 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
125 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
65 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|
Comment