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

Horizontal line at specific price

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

    Horizontal line at specific price

    Hi,

    If I wanted to place a horizontal line at a specific price what's the NinjaScript code required?

    Thank you in advance,
    suprsnipes

    #2
    You can work for example with DrawHorizaontalLine() for this - http://www.ninjatrader-support.com/H...ontalLine.html

    Code:
     
    DrawHorizontalLine("myLine", 1100, Color.Blue);
    Above snippet places a blue horizontal line at 1100 Y axis price level.

    BertrandNinjaTrader Customer Service

    Comment


      #3
      Hi Bertrand,

      Thanks for the reply.

      Can I please ask you one further question.

      How can I write a script so the indicator would draw a horizontal line at numbers ending in '00', like your example of 1100 above? Do you need to use an if statement?

      Appreciate the help,
      suprsnipes

      Comment


        #4
        Yes, you would need to custom code this with for example if statements in the indicator - of course you can also draw just multiple lines with different draw object tag Id's at various levels...i.e.

        Code:
         
        DrawHorizontalLine("myLine1", 1000, Color.Blue);
         
        DrawHorizontalLine("myLine2", 1100, Color.Blue);
         
        DrawHorizontalLine("myLine3", 1200, Color.Blue);
        BertrandNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by cre8able, Today, 01:16 PM
        2 responses
        9 views
        0 likes
        Last Post cre8able  
        Started by chbruno, 04-24-2024, 04:10 PM
        3 responses
        48 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by samish18, Today, 01:01 PM
        1 response
        7 views
        0 likes
        Last Post NinjaTrader_LuisH  
        Started by WHICKED, Today, 12:56 PM
        1 response
        9 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by WHICKED, Today, 12:45 PM
        1 response
        11 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Working...
        X