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 Mindset, 04-21-2026, 06:46 AM
      0 responses
      88 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      135 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      68 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      119 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      69 views
      0 likes
      Last Post PaulMohn  
      Working...
      X