Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    Paul H.NinjaTrader Customer Service

    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 Max238, Today, 01:28 AM
      2 responses
      26 views
      0 likes
      Last Post NinjaTrader_ChristopherJ  
      Started by Shansen, 08-30-2019, 10:18 PM
      25 responses
      949 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by JonesJoker, 04-22-2024, 12:23 PM
      8 responses
      41 views
      0 likes
      Last Post JonesJoker  
      Started by timko, Today, 06:45 AM
      0 responses
      4 views
      0 likes
      Last Post timko
      by timko
       
      Started by Waxavi, 04-19-2024, 02:10 AM
      2 responses
      39 views
      0 likes
      Last Post poeds
      by poeds
       
      Working...
      X