I tried Bars.PercentComplete but it just printed on each bar
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
last bar of backtest
Collapse
X
-
last bar of backtest
is there a method to call the last bar of a back test (strategy analyzer)? I am printing some results to a file and I want to wait until the backtest is over to print, in order to save processing time printing on each bar update
I tried Bars.PercentComplete but it just printed on each bar -
Hello eurostoxx trader,
There is no way to know the last bar while backtesting. However if you want to know when the backtest has ended, then you can append the note in the OnTermination code to do it.
Code:protected override void OnTermination() { Print("Backtesting done"); }JoydeepNinjaTrader Customer Service
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
88 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
48 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
30 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
34 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
68 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment