Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Current current price bar in historical testing
Collapse
X
-
Current current price bar in historical testing
I am trying to set up a strategy that moves stop loss prices as the price increases but when I view in debug mode, the value Close[CurrentBar], does not change but I can see that the value of CurrentBar is increasing. The code is in the OnBarUpdate() method. -
Hello mww1615,
Series use barsAgo values for indexes.
0 bars ago would be the current bar.
Using Close[CurrentBar] would return the close price of the first bar on the chart not the current bars close. This wouldn't change because that bar is already closed.
Below is a public link to the help guide on Close.
Chelsea B.NinjaTrader Customer Service
-
I am trying to backtest a strategy with changing stop losses and when I check the value of CurrentBar, it increases each time thru so I assumed close[CurrentBar] would be getting the price that was currently being evaluated on the chart. Here is the code I am trying to run to change the stop loss price based on how much the price has increased. Can you please give me a suggestion of how I can do this.
if (Position.MarketPosition == MarketPosition.Long)
{
double p = Close[CurrentBar];
if ( Close[CurrentBar] >= (entry_price + 6 * TickSize) && controlOne)
{
SetStopLoss("stopOrder", CalculationMode.Price, Position.AveragePrice, true);
controlOne = false;
}
else if (Close[CurrentBar] >= (entry_price + 12 * TickSize) && !controlOne)
{
SetStopLoss("stopOrder", CalculationMode.Price, Position.AveragePrice + 4* TickSize, true);
}
}
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
90 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
137 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
120 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
71 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment