Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Access to ATI server in script

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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:
    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;
            }

    #2
    Hello seahn,

    Thank you for your post.

    There would not be documentation for this in NinjaTrader 7 or 8. This would be considered unsupported programming in NinjaScript. I would not be aware of a means to achieve the same results in NinjaTrader 8.

    Please let me know if you have any questions.

    Comment


      #3
      Originally posted by seahn View Post
      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?
      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..

      NT8 has changed and opened up that a bit..

      You might try referencing the StartAtmStrategy() now instead..




      -=Edge=-
      NinjaTrader Ecosystem Vendor - High Tech Trading Analysis

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by RookieTrader, Today, 09:37 AM
      3 responses
      15 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by kulwinder73, Today, 10:31 AM
      0 responses
      8 views
      0 likes
      Last Post NinjaTrader_Erick  
      Started by terofs, Yesterday, 04:18 PM
      1 response
      24 views
      0 likes
      Last Post terofs
      by terofs
       
      Started by CommonWhale, Today, 09:55 AM
      1 response
      5 views
      0 likes
      Last Post NinjaTrader_Erick  
      Started by Gerik, Today, 09:40 AM
      2 responses
      8 views
      0 likes
      Last Post Gerik
      by Gerik
       
      Working...
      X