Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Conditions Help

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

    Conditions Help

    I am using the strategy builder and strategy tester. The tester is not showing remotely close to proper trade execution. I want a long entry when the current price is greater or equal to the open plus a certain number of ticks...I am running it on the 1 minute chart and expect it to use the Open of the current 1 minute candle. I have Calculate.OnEachTick; already set so it should be using the actual current price when I use Close[0] Here is the code

    // Set 1
    if (Close[0] >= (Open[0] + (overticks)) )
    {
    EnterLong(Convert.ToInt32(Quantity), @"");
    }

    "overticks" is an input for total ticks over the open.

    Any thoughts?

    #2
    Hello Shiner452,

    Thanks for your post and welcome to the NinjaTrader forums!

    If what you are showing is the code then what you are adding to the Open[0] price is not ticks but points. When you create the "offset" change it from "arithmetic" to "Ticks". You would end up with this code: if (Close[0] >= (Open[0] + (Overticks * TickSize)) )
    Last edited by NinjaTrader_PaulH; 06-08-2021, 02:19 PM.

    Comment


      #3
      Ah yes I'm so sorry. I did not notice that! Thanks for the help!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NullPointStrategies, Today, 05:17 AM
      0 responses
      50 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      126 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      69 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      42 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      46 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X