Thanks.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
PnL Display Unit and percentage of equity
Collapse
X
-
PnL Display Unit and percentage of equity
I would like to see PnL displayed on the chart as a percentage of account equity. It seems that the current options are currency, points, percentage (price change/entry price). I searched the user guide and the forum and have not found out how to do this. Is there a way? Either out of the box or through custom programming?
Thanks.Tags: None
-
Hi OneTrader,
Thank you for your post.
While it would not be supported to do so, it may be possible with custom logic.
Below is an unsupported tidbit that may assist you in polling your account size.
foreach (Account acct in Cbi.Globals.Accounts)
{
if (acct.Positions != null)
{
Print(acct.ToString());
}Chelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
77 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
45 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
28 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
32 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
64 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment