Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

client.Orders() call in C# sample application returns nothing?

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

    client.Orders() call in C# sample application returns nothing?

    Guys,

    I'm working on an app to integrate with NinjaTrader, and for various reasons I want it to be external and not part of the NinjaScript interface.

    I've configured the C# sample app and run it. However, I simply cannot get the documented Orders() method to return anything for account SIM101, even though I'm running the simulated feed and the account is there, and I've placed orders in it, both through Control Center and through the sample app.

    Another concern is that my orders placed from the sample app don't seem to show up in the Control Center...so I'm concerned it's broken all around.

    See here:
    Code:
     // Submit the order
                if (cboOrderType.Text == "MARKET")
                    success = client.Command("PLACE", "SIM101", instrument, action, quantity, "MARKET", 0, 0, "DAY", "", orderId, "", "");
                else if (cboOrderType.Text == "LIMIT")
                    success = client.Command("PLACE", "SIM101", instrument, action, quantity, "LIMIT", (double) nudLimitPrice.Value, 0, "DAY", "", orderId, "", "");
                else if (cboOrderType.Text == "STOP")
                    success = client.Command("PLACE", "SIM101", instrument, action, quantity, "STOP", 0, (double) nudStopPrice.Value, "DAY", "", orderId, "", "");
                else if (cboOrderType.Text == "STOPLIMIT")
                    success = client.Command("PLACE", "SIM101", instrument, action, quantity, "STOPLIMIT", (double) nudLimitPrice.Value, (double) nudStopPrice.Value, "DAY", "", orderId, "", "");
                System.Console.WriteLine(client.Orders("SIM101"));
    This code is from Form1.cs, and I added that last line (System.Console.WriteLine(client.Orders("SIM101")) ) on line 70. However, nothing is printed out...the newline is printed (i.e., I know writeline is working) but no data is returned from the call.

    Am I doing something wrong here?

    #2
    Never mind...got it. I had not turned on the AT interface (File->AT Interface).

    Thanks.

    Comment


      #3
      Ok, great you got it working!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by sjsj2732, Yesterday, 04:31 AM
      0 responses
      31 views
      0 likes
      Last Post sjsj2732  
      Started by NullPointStrategies, 03-13-2026, 05:17 AM
      0 responses
      286 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      283 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      133 views
      1 like
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      91 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Working...
      X