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

BarsSinceEntry() - Question

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

    BarsSinceEntry() - Question

    How does this function work when no entries have occured prior to the time the function was triggered? When I used this in code that was filtering conditions for an entry signal, I found that no entry signals were ever triggered.

    If the function needs a preceding entry signal to work properly, how can it be used for the initial entry signal?

    #2
    Either a value of zero or a negative value. To test, just print out the value.

    Print(BarsSinceEntry());
    RayNinjaTrader Customer Service

    Comment


      #3
      BarsSinceEntry() - Still Confused

      Thanks for the prompt response, but I still don't understand.

      The code I used was something like this:

      if (BarsSinceEntry() > 10)
      {
      EnterLong();
      }

      My problem is that nothing happened when the condition was true.

      Your initial answer was use either 0 or -1 and test to see what happens. Can you express your answer by telling me what's wrong with my code example above?

      Thanks.

      Comment


        #4
        EnterLong() never will be triggered since its value never will be greater than 10. Please proceed as per Ray's post below to understand what value BarsSinceEntry returns in case no trade was entered yet.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Tim-c, Today, 03:54 AM
        1 response
        7 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by rocketman7, Today, 01:00 AM
        1 response
        9 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by wzgy0920, 04-23-2024, 09:53 PM
        3 responses
        76 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by JonesJoker, 04-22-2024, 12:23 PM
        9 responses
        46 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by timko, Today, 06:45 AM
        1 response
        7 views
        0 likes
        Last Post gaz0001
        by gaz0001
         
        Working...
        X