Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Length of a candle

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

    Length of a candle

    hi, i'm making a strategy and i want the entry to be made when the length of the candle is defined by the user. How do I measure the length of the previous candle and know if it could be a market entry candle? Thank you

    #2
    Hello jerryblack,

    Thanks for the post.

    By length of the candle do you mean Time it took to complete or the Difference between high and low?

    The user input part is very easy, that can be created by the strategy builder in the user inputs section. Depending on the condition you are looking for would determine what Type the user input is.

    I look forward to being of further assistance.

    Comment


      #3
      Thanks for answering

      I want to choose the type of candle, which is a large candle and with intention

      Comment


        #4
        Hello jerryblack,

        What makes the candle large? Are you referring to the difference in prices between the low and high? For example this candle was large because it had X amount of difference between low and high?

        I look forward to being of further assistance.

        Comment


          #5
          yes exactly, I want to measure it and put it in a variable to tell the strategy if it is the correct candle to enter or not

          Comment


            #6
            Hello jerryblack,

            You could calculate that by using the following syntax:

            Code:
            double length = High[1] - Low[1];
            This would give you the price difference whihch you could then use in a condition. Assuming you have a user input called InputPrice it would look like the following:

            Code:
            if(InputPrice > length)
            {
            
            }
            I look forward to being of further assistance.

            Comment


              #7
              thanks a lot

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by Mindset, 04-21-2026, 06:46 AM
              0 responses
              90 views
              0 likes
              Last Post Mindset
              by Mindset
               
              Started by M4ndoo, 04-20-2026, 05:21 PM
              0 responses
              137 views
              0 likes
              Last Post M4ndoo
              by M4ndoo
               
              Started by M4ndoo, 04-19-2026, 05:54 PM
              0 responses
              68 views
              0 likes
              Last Post M4ndoo
              by M4ndoo
               
              Started by cmoran13, 04-16-2026, 01:02 PM
              0 responses
              120 views
              0 likes
              Last Post cmoran13  
              Started by PaulMohn, 04-10-2026, 11:11 AM
              0 responses
              69 views
              0 likes
              Last Post PaulMohn  
              Working...
              X