Login Page - Create Account

Support Board


Date/Time: Sat, 18 May 2024 21:54:50 +0000



Post From: AllowOnlyOneTradePerBar issue

[2018-01-16 12:17:25]
User14532 - Posts: 6
I can not send more BUYLIMIT orders in one bar.
I'm set up AllowOnlyOneTradePerBar = false;
Should it be allowed somewhere else?

my code
      sc.AllowMultipleEntriesInSameDirection = true;
      sc.MaximumPositionAllowed = 400000;
      sc.SupportReversals = 0;
      sc.SendOrdersToTradeService = 1;
      sc.AllowOppositeEntryWithOpposingPositionOrOrders = true;
      sc.SupportAttachedOrdersForTrading = false;
      sc.CancelAllOrdersOnEntriesAndReversals = 0;
      sc.AllowEntryWithWorkingOrders = true;
      sc.CancelAllWorkingOrdersOnExit = 0;      
      sc.AllowOnlyOneTradePerBar = false;
      sc.MaintainTradeStatisticsAndTradesData = true;

thx