I found nothing in the Trade object.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Number of Bars
Collapse
X
-
Hello tbmuc,
Thanks for writing in and I am happy to assist you.
To export the executed trades please follow the below steps.- In Control Center click on Executions tab.
- Right-click on the data grid.
- In the context menu goto Grid>Export to Excel.
Please let me know if I can assist you any further.JoydeepNinjaTrader Customer Service
-
Is there a way to get this information for closed trades? The other data is determined tis way:
foreach (Trade myTrade in Performance.AllTrades)
{
IExecution entryOrder =myTrade.Entry;
IExecution exitOrder =myTrade.Exit;
File.AppendAllText( tradefile, strategyname
+ ";" + Instrument.MasterInstrument.Name
+ ";" + entryOrder.MarketPosition
+ ";" + myTrade.Quantity.ToString()
+ ";" + entryOrder.Price.ToString()
+ ";" + exitOrder.Price.ToString()
+ ";" + ToDay(entryOrder.Time).ToString()
+ ";" + ToDay(exitOrder.Time).ToString()
+ ";" + (myTrade.ProfitCurrency * myTrade.Quantity).ToString() +"\r\n"
);
}
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
125 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
105 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
84 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
104 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
83 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment