Login Page - Create Account

Support Board


Date/Time: Tue, 16 Sep 2025 02:44:26 +0000



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

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