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 Mindset, 04-21-2026, 06:46 AM
|
0 responses
118 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
166 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
85 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
130 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
88 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment