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 charlesugo_1, 05-26-2026, 05:03 PM
          0 responses
          59 views
          0 likes
          Last Post charlesugo_1  
          Started by DannyP96, 05-18-2026, 02:38 PM
          1 response
          143 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 05-11-2026, 05:56 AM
          0 responses
          161 views
          0 likes
          Last Post CarlTrading  
          Started by CarlTrading, 05-10-2026, 08:12 PM
          0 responses
          97 views
          0 likes
          Last Post CarlTrading  
          Started by Hwop38, 05-04-2026, 07:02 PM
          0 responses
          283 views
          0 likes
          Last Post Hwop38
          by Hwop38
           
          Working...
          X