Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Vertical Line

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

    Vertical Line

    Hi

    Can someone give me the code to draw a vertical line at a specific bar or time on a chart

    for example draw a blue vertical line at 13:00 on the 60 minute chart (see attached)

    Thanks
    Attached Files

    #2
    Hi ryebank,

    the easiest way to do this is probably with ToTime and a DrawVerticalLine(), something like this:
    Code:
    if(ToTime(Time[0]) >= 130000)
    {
        DrawVerticalLine("line0", Time[0], Color.Blue, DashStyle.Solid, 2);
    }
    DrawVerticalLine's second argument is the time to draw, so you can use Time[0] after checking it, or use a specific date directly in the call to it.

    Comment


      #3
      Hello ryebank,

      You could do this with:
      if (ToTime(Time[0]) == 130000)
      DrawVerticalLine("vline" + CurrentBar, 0, Color.Blue, DashStyle.Dash, 1);

      Useful methods:
      ToTime()
      DrawVerticalLine()
      Ryan M.NinjaTrader Customer Service

      Comment


        #4
        Thanks, i will try to implement this tonight

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by BarzTrading, Today, 07:25 AM
        2 responses
        21 views
        1 like
        Last Post BarzTrading  
        Started by devatechnologies, 04-14-2024, 02:58 PM
        3 responses
        20 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by tkaboris, Today, 08:01 AM
        0 responses
        4 views
        0 likes
        Last Post tkaboris  
        Started by EB Worx, 04-04-2023, 02:34 AM
        7 responses
        163 views
        0 likes
        Last Post VFI26
        by VFI26
         
        Started by Mizzouman1, Today, 07:35 AM
        1 response
        10 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Working...
        X