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 cmoran13, Yesterday, 01:02 PM
          0 responses
          30 views
          0 likes
          Last Post cmoran13  
          Started by PaulMohn, 04-10-2026, 11:11 AM
          0 responses
          22 views
          0 likes
          Last Post PaulMohn  
          Started by CarlTrading, 03-31-2026, 09:41 PM
          1 response
          160 views
          1 like
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 04-01-2026, 02:41 AM
          0 responses
          95 views
          1 like
          Last Post CarlTrading  
          Started by CaptainJack, 03-31-2026, 11:44 PM
          0 responses
          148 views
          2 likes
          Last Post CaptainJack  
          Working...
          X