PS: I was unable to find an indicator that already does this.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
can code be written to display PnL in ticks?
Collapse
X
-
can code be written to display PnL in ticks?
I daytrade ES (mainly) and would love to see my trade performance in ticks rather than the Currency or Points. Is this possible using NinjaScript? Thanks.
PS: I was unable to find an indicator that already does this.Tags: None
-
Hello JImJinNJ,
The simple answer is there is not a supported way of looping through manual trades with a NinjaScript and getting the performance.
However, with unsupported methods, it may be possible to get the trades made on the same trading day and calculate the performance and measure this in ticks.
Below I am including some unsupported code to point you in the right direction. I cannot assist with this unsupported code.
foreach (Account acct in Cbi.Globals.Accounts)
{
if (acct.Orders != null)
{
OrderCollection orders = acct.Orders;
foreach (Order ord in orders)
{
Print(ord.ToString());
}
}
}Chelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
29 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
17 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
9 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
15 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
18 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment