Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

BarsSinceExit

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

    BarsSinceExit

    I read somewhere on this forum to get around the issue of barsonexit having a default value of -1 and not having a trade in the system in the system (thus no trades will ever be made) you use this:

    (BarsSinceExit() > 3 || BarsSinceExit() == -1)

    Doesn't seem to be working for me.

    #2
    Hello shawnkm,

    Thank you for your post.

    Can you post a code snippet that demonstrates this not working?

    Comment


      #3
      Sure... Thanks for the help by the way... Here is the sample code I was playing with, I included a pic as well:


      // Enter market conditions go here
      if (Position.MarketPosition == MarketPosition.Flat)
      {
      if (BarsSinceExit() > 30 || BarsSinceExit() == -1);
      {
      EnterLong();
      }
      }
      Attached Files

      Comment


        #4
        Hello shawnkm,

        Thanks for your post.

        It looks like you have an inadvertent ";" prematurely ending the conditional statment if (BarsSinceExit() > 30 || BarsSinceExit() == -1);

        Once you remove the ";" the code will then execute as you intended.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        558 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        324 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        545 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        547 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X