Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

My traded orders increases progressively

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

    My traded orders increases progressively

    Hi,

    I am facing the following problem when writing a simple strategy.

    When the strategy starts running, it enters and exit by 1 unit. However, as the strategy progresses the entered an exited units increased progressively.

    For example, when I started the strategy at 8 am, every single trade is only 1 contract. As time progresses (let say till 11am), a single trade will become 10 contracts. At 1pm, a single trade then become 15 contracts.

    Is there anyway to standardise to 1 contract for all trade? The code is as below.

    Thanks!


    This method is used to configure the strategy and is called once before any strategy method is called.
    /// </summary>
    protected override void Initialize()
    {
    CalculateOnBarClose = true;
    }

    /// <summary>
    /// Called on each bar update event (incoming tick)
    /// </summary>
    protected override void OnBarUpdate()
    {
    // Condition set 1
    if (Close[0] > Close[1]
    && Close[1] > Close[2])
    {
    EnterLong(DefaultQuantity, "");
    ExitShort("", "");
    }

    // Condition set 2
    if (Close[0] < Close[1]
    && Close[1] < Close[2])
    {
    EnterShort(DefaultQuantity, "");
    ExitLong("", "");
    }

    #2
    ggcow, welcome to the forums!

    I don't see anything in your code that would lead to this contract quantity increase, but have you tried running it with EntriesPerDirection set to 1 and the type set to AllEntries?
    AustinNinjaTrader Customer Service

    Comment


      #3
      Hi Austin,

      Thanks a lot! I have resolved the issue.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      672 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      379 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      111 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      577 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      582 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X