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

globalLine

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

    globalLine

    hi, within my indicator, I need to identity all manually drawn horizontal line objects drawn on my chart ... specifically the price level they are drawn at and the color of the line. Can you provide me some direction on this. thank you

    #2
    Hello,
    For User Drawn Objects you could use the code below to find all user drawn horizontal lines and print out the value the user drawn horizontal line is drawn at and the color of the horizontal line.

    foreach(IDrawObject draw in DrawObjects)
    {
    if(draw.UserDrawn)
    {Print(draw.DrawType.ToString());//you can get the tag of the object to help narrow down results
    if(draw.DrawType == DrawType.HorizontalLine)//if the object type is a horizontal line do this
    {
    IHorizontalLine horizontalLine = draw as IHorizontalLine; //neeed to re define the IDrawingObjects as a Horizontal line to access corect values
    Print(horizontalLine.ToString() + horizontalLine.Pen.Color);
    }
    }
    }

    For more information on IDrawObject please see the following link, http://www.ninjatrader.com/support/h...drawobject.htm
    For more information on IHorizonatalLine please see the following link, http://www.ninjatrader.com/support/h...zontalline.htm

    If we can be of any other assistance please let me know.
    Cody B.NinjaTrader Customer Service

    Comment


      #3
      thank you ... very helpful. Is there a way I can extract just the price and the color ... for example

      56.21, Magenta

      Comment


        #4
        Hello,
        You can print out the value and color by changing the print command to the one below.
        Print(horizontalLine.Y.ToString() + " "+ horizontalLine.Pen.Color);

        If we can be of any other assistance please let me know.
        Cody B.NinjaTrader Customer Service

        Comment


          #5
          One more request ... is there a way to print the "horizontalLine.Y.ToString()" without a comma?

          Comment


            #6
            Hello,
            Can you clarify where you are seeing the comma?
            If you are seeing this as where the decimal place is you could use the following to have the value print without any decimal places.
            Print(horizontalLine.Y.ToString("#") + " "+ horizontalLine.Pen.Color);

            This will print out just the integer value of the Y value. If you wanted to print out with decimals up to a certain point, say up to two decimal places for example, you would format it as ToString("##.##");

            You can view more information on Numeric Formatting at the following link, https://msdn.microsoft.com/en-us/lib...vs.110%29.aspx
            Cody B.NinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by jclose, Today, 09:37 PM
            0 responses
            4 views
            0 likes
            Last Post jclose
            by jclose
             
            Started by WeyldFalcon, 08-07-2020, 06:13 AM
            10 responses
            1,413 views
            0 likes
            Last Post Traderontheroad  
            Started by firefoxforum12, Today, 08:53 PM
            0 responses
            10 views
            0 likes
            Last Post firefoxforum12  
            Started by stafe, Today, 08:34 PM
            0 responses
            10 views
            0 likes
            Last Post stafe
            by stafe
             
            Started by sastrades, 01-31-2024, 10:19 PM
            11 responses
            169 views
            0 likes
            Last Post NinjaTrader_Manfred  
            Working...
            X