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 sjsj2732, Yesterday, 04:31 AM
          0 responses
          38 views
          0 likes
          Last Post sjsj2732  
          Started by NullPointStrategies, 03-13-2026, 05:17 AM
          0 responses
          287 views
          0 likes
          Last Post NullPointStrategies  
          Started by argusthome, 03-08-2026, 10:06 AM
          0 responses
          289 views
          0 likes
          Last Post argusthome  
          Started by NabilKhattabi, 03-06-2026, 11:18 AM
          0 responses
          134 views
          1 like
          Last Post NabilKhattabi  
          Started by Deep42, 03-06-2026, 12:28 AM
          0 responses
          95 views
          0 likes
          Last Post Deep42
          by Deep42
           
          Working...
          X