Thank you
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to enter on CalculateOnBarClose=true but exit on false?
Collapse
X
-
From the Samples subForum:Originally posted by relogical View PostCan someone please show me some code on how I can enter a trade on CalculateOnBarClose=true but exit on =false?
Thank you
ref: http://www.ninjatrader.com/support/f...ad.php?t=19387
-
Hello relogical,
Thank you for your post.
If you are going to use SetStopLoss() or if you plan to place an Exit(Long/Short)Limit() or Exit(Long/Short)StopLimit() or Exit(Long/Short)Stop() order, these will sit with the broker and will be filled anytime the price passes through the order price. If these are placed at the time of entry and are working with the broker, these will fill at any time and not just when a bar closes.
If, however, you are wanting to exit an order using a market order with Exit(Long/Short)() based on conditions for an exit, you will need to either use intra-bar granularity or have the script run with CalculateOnBarClose set to false.
To use intra-bar granularity add a secondary series to your script of one tick.
For example:
protected override void Initialize()
{
Add(PeriodType.Tick);
}
Then in your OnBarUpdate code use the primary data series to enter a trade and the secondary data series to exit the trade.
For example:
if (BarsInProgress == 0 // && Conditions to enter trade here)
{
EnterLong(0, 1, "entry")
}
if (BarsInProgress == 1 // && Conditions to exit trade here)
{
ExitLong(0, 1, "exit", "entry");
}
The second method would be to use CalculateOnBarClose as false and use FirstTickOfBar to determine when to enter a trade.
Below is a link to the help guide on FirstTickOfBar.
http://www.ninjatrader.com/support/h...ttickofbar.htm
Also, here is a link to a sample that does something like this.
http://www.ninjatrader.com/support/f...ad.php?t=19387Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
646 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
367 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
570 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment