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 SalmaTrader, 07-07-2026, 10:26 PM
        0 responses
        47 views
        0 likes
        Last Post SalmaTrader  
        Started by CarlTrading, 07-05-2026, 01:16 PM
        0 responses
        22 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 06-17-2026, 10:32 AM
        0 responses
        15 views
        0 likes
        Last Post CaptainJack  
        Started by kinfxhk, 06-17-2026, 04:15 AM
        0 responses
        21 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 06-17-2026, 04:06 AM
        0 responses
        23 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Working...
        X