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

Bars Since a Condition in a Strategy

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

    #31
    If all your entry conditions have the built in function BarsSinceEntry(), then you've prevented any entries from happening.

    You would only want this condition active after the first entry, so you need to code for a sequence. You can code a sequence with bool flags. See here for a similar question with BarsSinceExit and one approach.

    I would simplify until everything works as you expect. Get BarsSinceEntry working first in a single series and then only apply to multi series when you know how eveything works.

    When inputting parameters, just use values and not a variable declaration.
    BarsSinceEntry(0, "", 0)
    Ryan M.NinjaTrader Customer Service

    Comment


      #32
      Originally posted by NinjaTrader_RyanM View Post
      ....
      When inputting parameters, just use values and not a variable declaration.
      BarsSinceEntry(0, "", 0)
      I am using the BarsSinceEntry to test which BarsInProgress I want to use, so my test for exit is
      (BarsSinceEntry(exbarBSEbip,
      "",0)
      exbarBESbip modifies the setting of the range bar. From the comment by Ryan, it sounds like this is not possible !? I dont see any errors and there are no compiler issues.

      Thanks again,
      Jon

      Comment


        #33
        Jon, that comment was intended to simplify mkt's code and correct their particular usage. You can use variables here, but not something like int BarsInProgress == 0
        Ryan M.NinjaTrader Customer Service

        Comment


          #34
          Thanks for that Ryan! ... actually on the code I was using (instead of directly using an integer) it appears that it was causeing a 'object reference not set to an instance of an object' error in the log tab during optimization, but not on a backtest.
          Last edited by Trader.Jon; 12-17-2010, 09:56 PM.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Touch-Ups, Today, 10:36 AM
          0 responses
          5 views
          0 likes
          Last Post Touch-Ups  
          Started by geddyisodin, 04-25-2024, 05:20 AM
          8 responses
          61 views
          0 likes
          Last Post NinjaTrader_Gaby  
          Started by jxs_xrj, 01-12-2020, 09:49 AM
          4 responses
          3,289 views
          1 like
          Last Post jgualdronc  
          Started by Option Whisperer, Today, 09:55 AM
          0 responses
          5 views
          0 likes
          Last Post Option Whisperer  
          Started by halgo_boulder, 04-20-2024, 08:44 AM
          2 responses
          24 views
          0 likes
          Last Post halgo_boulder  
          Working...
          X