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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
334 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
211 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
196 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
287 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
245 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment