foreach (Position p in account.Positions) {[INDENT]if (p.MarketPosition != MarketPosition.Flat) {[/INDENT][INDENT=2]Print("RT commission for this position is : " + [COLOR=#e74c3c][I]<where do I get this value from?>[/I][/COLOR])[/INDENT][INDENT]}[/INDENT]
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Commission on current instrument
Collapse
X
-
Commission on current instrument
How do I determine what the RT commission is for a given position/instrument?
Code:Tags: None
-
But doesn't the GetUnrealizedProfitLoss() method return P/L without applying round-trip commissions? I am interested in the commission for whichever position is open so I can calculate true P/L.
Comment
-
Hello emini.ninja,
To clarify my reply was based on the code you provided and working with the Position object. You would not be able to access commission information from the Position, that is not where the commission is applied. The commission is associated with the Executions. If you wanted to know the commission by looping through the positions you would need to collect information like the Instrument and then use a commission based on that instrument in your calculations. I am not aware of any way to access the commission template, this would be something you would hard code.
If you were using the execution information the execution has a Commission property. https://ninjatrader.com/support/help...executions.htm
Please let me know if I may be of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
82 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
43 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
64 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
56 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment