private string CreatePlaceOrder(string account, string strategyTemplateName, OrderAction action, int quantity, OrderType orderType, string orderId, double limitPrice, double stopPrice)
{
string commandStringOIF = CommandString("PLACE",
account,
Instrument.FullName,
action.ToString(),
quantity,
orderType.ToString(),
limitPrice,
stopPrice,
TimeInForce.Day.ToString(),
"",
orderId,
strategyTemplateName,
"");
NinjaTrader.Server.AtiServer atiServer = NinjaTrader.Cbi.Globals.AtiServer;
MethodInfo miProcessOif = typeof(NinjaTrader.Server.AtiServer).GetMethod( "ProcessOif", BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Static );
if( miProcessOif != null )
{ object[] args = { commandStringOIF };
miProcessOif.Invoke( null, args );
}
return commandStringOIF;
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Access to ATI server in script
Collapse
X
-
Access to ATI server in script
In NT7 I use the following example code to run the ATI server from a script to place various orders, the example is an order to buy or sell, I realize this is not documented in NT7 but is there a documented version in NT8 or can you tell me how to access a reference to the ATI server?
Code:Tags: None
-
I believe that ati server code was being used in NT7 to overcome it's inability to place an order attached to an ATM within an indicator..Originally posted by seahn View PostIn NT7 I use the following example code to run the ATI server from a script to place various orders, the example is an order to buy or sell, I realize this is not documented in NT7 but is there a documented version in NT8 or can you tell me how to access a reference to the ATI server?
NT8 has changed and opened up that a bit..
You might try referencing the StartAtmStrategy() now instead..
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
64 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
28 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
20 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
25 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
26 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment