Login Page - Create Account

Support Board


Date/Time: Mon, 03 Nov 2025 18:46:51 +0000



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

[2023-02-09 20:08:38]
ForgivingComputers.com - Posts: 1150
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
        
      }