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 CarlTrading, 03-31-2026, 09:41 PM
      1 response
      47 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      23 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      33 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      50 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      42 views
      0 likes
      Last Post CarlTrading  
      Working...
      X