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 Pattontje, Yesterday, 02:10 PM
      2 responses
      14 views
      0 likes
      Last Post Pattontje  
      Started by flybuzz, 04-21-2024, 04:07 PM
      17 responses
      229 views
      0 likes
      Last Post TradingLoss  
      Started by agclub, 04-21-2024, 08:57 PM
      3 responses
      17 views
      0 likes
      Last Post TradingLoss  
      Started by TradingLoss, 04-21-2024, 04:32 PM
      4 responses
      44 views
      2 likes
      Last Post TradingLoss  
      Started by cre8able, 04-17-2024, 04:16 PM
      6 responses
      56 views
      0 likes
      Last Post cre8able  
      Working...
      X