Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Draw.Dot in Historical Bar

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

    Draw.Dot in Historical Bar

    hi, i try this code :

    Code:
    [COLOR=#add8e6]
     protected override void OnBarUpdate()
     [/COLOR][COLOR=#000000]{[/COLOR]
     [COLOR=#000000]if ( (Open[1]-Close[1])>0) 
         {
                        Draw.Dot(this, "D", true, 0 , Low[0]-TickSize, Brushes.Red);
    [/COLOR]
      
     [COLOR=#000000]}[/COLOR]
    but i see that it plot only last bar...
    How i must do to solve it? (i want to plot all bar in historic)

    #2
    Hello turbofib,

    Thanks for your post.

    Each drawn object requires a unique "tag name". In the example you are using the tag name of "D" for each object drawn. When you use the same tag name on successive objects what happens is that the current object is removed and the new object is drawn. In your case it would have repeated up to the last occurrence of the condition leaving just the last dot plotted.

    To show all the dots, you will need a unique tag name for each one. One way to do this is to add the CurrrentBar to the name:

    Code:
    if ( (Open[1]-Close[1])>0) 
    {
        Draw.Dot(this, "D"[COLOR="Blue"]+CurrentBar[/COLOR], true, 0 , Low[0]-TickSize, Brushes.Red);
    }

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, Yesterday, 10:06 AM
    0 responses
    17 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    16 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    14 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    9 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    36 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X