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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
87 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
47 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
66 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
69 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
58 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment