Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

DrawDot to the right of price

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

    DrawDot to the right of price

    I would like to draw a colored dot to the right of the price, 4 dots to be precise by price level, then delete them every new bar, DrawDot wont extend to the right but is there another way or has someone any sample code?

    Thanks

    #2
    Plot dots

    This is a way to do it:

    DrawLine("YourLine", false, -4, Close[0], -1, Close[0], Color.Blue, DashStyle.Dot, 8);

    if you are going to have a condition for this:

    if(your condition)
    {
    DrawLine("YourLine", false, -4, Close[0], -1, Close[0], Color.Blue, DashStyle.Dot, 8);
    }

    I guess also another way to solve it is to just plot using Dot, -1, -2,and minus 3.
    Not shure if this is the correct way, but it works. If this is completely wrong, i guess some of the mods here will corect me:

    IDot dot1 = DrawDot("Dot1", true, -1, Close[0], Color.Red);
    IDot dot2 = DrawDot("Dot2", true, -2, Close[0], Color.Red);
    IDot dot3 = DrawDot("Dot3", true, -3, Close[0], Color.Red);

    Hope this is what you are looking for.

    Regards, Finn Jurbol
    Attached Files

    Comment


      #3
      looks great, how do then deleted them every new bar?

      Comment


        #4
        You don't need add anything extra for that. They will move automaticly to the new bar.

        Comment


          #5
          I tried

          DrawDot("Dot1", true, -1, Close[0], Color.Red);

          On 6.5, maybe on NT7 it works, but it does not like the negative number on 6.5

          I dont know what IDot is? is it a NT7 feature, it is not on 6.5

          IDot dot1 = DrawDot("Dot1", true, -1, Close[0], Color.Red);

          Comment


            #6
            tinkerz, correct the IDraw objects have been added to NT7. For NT 6.5 you unfortunately can't draw programmatically into the future, for NT 7 you could do so by supplying a future DateTime as parameter.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Hwop38, 05-04-2026, 07:02 PM
            0 responses
            173 views
            0 likes
            Last Post Hwop38
            by Hwop38
             
            Started by CaptainJack, 04-24-2026, 11:07 PM
            0 responses
            328 views
            0 likes
            Last Post CaptainJack  
            Started by Mindset, 04-21-2026, 06:46 AM
            0 responses
            252 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by M4ndoo, 04-20-2026, 05:21 PM
            0 responses
            354 views
            0 likes
            Last Post M4ndoo
            by M4ndoo
             
            Started by M4ndoo, 04-19-2026, 05:54 PM
            0 responses
            181 views
            0 likes
            Last Post M4ndoo
            by M4ndoo
             
            Working...
            X