Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

I'm trying to write a code for this but am not sure how to go about it

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

    I'm trying to write a code for this but am not sure how to go about it

    If I had a condition which is true and within 4 bars this condition remains true and the close of the current bar is > SMA(5), EnterLong().

    Is there something like a BarSincecondition = true function?

    #2
    Kay, easiest would be to save the barnumber (CurrentBar) to a variable as the initial condition evaluates to 'true' - then you can compare against the CurrentBar count and place the trade if the difference is greater than you're 4 bars and the SMA condition aligns as well.

    Comment


      #3
      Hi Bertrand, to save the barnumber, i would use a double, correct? how would i compare it against the CurrentBar count?

      Comment


        #4
        Kay, an int would do, just look at what CurrentBar returns (an integer value).

        You can code alongside this untested snippet -

        if (myCondition)
        myCount = CurrentBar;

        int myDiff = CurrentBar - myCount;

        if (myDiff >= 4 and myOtherCondition)
        EnterLong();

        Comment


          #5
          Great! Thx Bertrand!

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          633 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          364 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          105 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          567 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          568 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X