Login Page - Create Account

Support Board


Date/Time: Sun, 08 Jun 2025 03:51:52 +0000



Post From: Trading system, send new order after limit order fill

[2023-02-09 20:08:38]
ForgivingComputers.com - Posts: 1063
When you submit the first order, check the return value. If positive, it was successful.

int Result = sc.BuyEntry(NewOrder);
if (Result > 0)
      {
        // Submit extra order above price here
        
      }