Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Draw an arrow as signal

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

    Draw an arrow as signal

    Hello everyone

    I have built a simply indi to know when 15 minutes and 60 minutes bars move in the same direction "backbrushing" the chart...

    I would like just draw an arrow at the beginning of every section. Any idea or example of how can I do that?

    Thanks Click image for larger version

Name:	10_05_2021_0859.jpg
Views:	328
Size:	107.2 KB
ID:	1155366

    #2
    Link below is the coding to draw arrow :


    Basically, you have to make a condition for it to draw. For example :
    Code:
    if (Condition here)
    Draw.ArrowUp(this, "tag1 " + CurrentBar, true, 0, Low[0] - TickSize, Brushes.Red);
    ** Remember to plus CurrentBar


    From your picture, it must be have condition for it to draw the region.
    Make you just put the draw arrow function inside there function.

    Comment


      #3
      Hello Cincai

      Thanks for your answer. I know how to draw an arrow. What I need to know is how to do just once at the beggining of each section.

      Sincerely,

      Comment


        #4
        Hello Rosario,

        Thanks for your post.

        You would need to devise some logic to create the situation you have. The situation is that you have a variable length of background drawing.

        One approach to this would be to create an int variable to use as a counter. When you do NOT have the condition to draw the background you would set the counter to 0. When you do have the condition to draw the background you increment the counter. When the counter is 1, you draw the arrow.

        if (some condition to draw the background)
        {
        BackBrush =...
        myCounter++; // increment counter
        if (myCounter == 1)
        {
        Draw.arrow....
        }
        }
        else
        {
        myCounter = 0; // reset the counter if NOT drawing the background
        }

        Comment


          #5
          Hello, Paul

          Thanks for your reply. Attached file. It works ok.

          Sincerely,
          Attached Files

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          571 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          331 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          101 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          549 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          550 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X