Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

ToTime Method

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

    ToTime Method

    How do I set up a new counter in my code?
    Last edited by G-Force; 11-16-2015, 05:55 AM. Reason: Change Idea

    #2
    what do u mean/what do u want to do?

    Comment


      #3
      Hello,

      Thank you for the question,
      Can you please provide further details the context of this question or provide a sample of what you are looping through where you need a counter variable?

      I look forward to being of further assistance.

      Comment


        #4
        I was given the following code but compile didn't like it:

        #region Variables
        private int counter = 0; // create the counter
        #endregion

        protected override void OnBarUpdate()
        {
        if (Close[0] > Close[1])
        counter++; // if the current close is greater than the previous, increment the counter
        else
        counter = 0; // reset the counter back to 0 because the current close isn't greater than the previous

        if (counter == 5)
        ExitLong(); // if there have been five consecutive up closes, exit long position
        }

        Comment


          #5
          Hello,

          Thank you for the reply.

          I pasted the sample into a strategy but it compiled fine, could you post the whole script instead to see where you have placed this syntax in the file? It may be that this syntax is in a incorrect location.

          Either the entire file or the error message would be needed to further identify what your compile error is.

          I look forward to being of further assistance.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          648 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          369 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          108 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          572 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          574 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X