Thank You
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Not Printing Out Statistics Of Trades
Collapse
X
-
Not Printing Out Statistics Of Trades
I have written a ninjascript code with using the strategy wizard so the statistics of my trades are not being displayed. Also i am referencing an ATM Strategy with my current strategy conditions which might explain some of the noise. I have made a couple attempts at this and references to the help guide and seems to still not be working. I am a beginner at programming so it might be something simple that i missed. I have the script attached below i was wondering if anyone could assist me in this. I am looking for the basic stats now realized, unrealized, postion, avg. price and exit time.
Thank YouTags: None
-
Hello RColtelli,
Unfortunately the built in trade performance class cannot be used with NS > ATM strategies. There are dedicated methods for accessing a lot of this, but it does require working in code and a strong familiarity with the SampleAtmStrategy in order to integrate it. See the ATM based methods (ATM Strategy Monitoring section) at the link below:
Ryan M.NinjaTrader Customer Service
-
After reading the link you provided i added a code of
protectedoverridevoid OnBarUpdate()
{
{
Print("Unrealized PnL is " + GetAtmStrategyUnrealizedProfitLoss("id").ToString());
Print("PnL is " + GetAtmStrategyRealizedProfitLoss("id").ToString());
}
This seems to still not work is there something i am missing or something that i might not have labeled right?
Thank You
Comment
-
RColtelli,
I am happy to assist you.
Most likely this is wrong : GetAtmStrategyUnrealizedProfitLoss("id") <--- The "id" part.
This needs to be the unique ID generated for your active ATM strategy. In your case I believe its : atmStrategyId
So this is what you want :
Please let me know if I may assist further.Code:protectedoverridevoid OnBarUpdate() { Print("Unrealized PnL is " + GetAtmStrategyUnrealizedProfitLossatmStrategyId).ToString()); Print("PnL is " + GetAtmStrategyRealizedProfitLoss(atmStrategyId).ToString()); }Adam P.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
61 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
40 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
21 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
23 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
51 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment