Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Draw Line

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

    Draw Line

    I am trying to draw a line using the following formula (Midpoint). It should start at the beginning of the session and run to current adjusting along the way. I looked at Draw.Line but am getting errors. Any help would be appreciated. Thank you.

    CurrentDayOHLC().CurrentLow[0] + (CurrentDayOHLC().CurrentHigh[0] - CurrentDayOHLC().CurrentLow[0])


    #2
    Hello EthanHunt,

    Thank you for your post.

    I would suggest assigning that calculation to a Plot:



    Here's a quick example:

    Code:
            private CurrentDayOHL CurrentDayOHL1;
            protected override void OnStateChange()
            {
                if (State == State.SetDefaults)
                {
                    Description                                    = @"Enter the description for your new custom Indicator here.";
                    Name                                        = "AddAPlot";
                    Calculate                                    = Calculate.OnBarClose;
                    IsOverlay                                    = true;
                    DisplayInDataBox                            = true;
                    DrawOnPricePanel                            = true;
                    DrawHorizontalGridLines                        = true;
                    DrawVerticalGridLines                        = true;
                    PaintPriceMarkers                            = true;
                    ScaleJustification                            = NinjaTrader.Gui.Chart.ScaleJustification.Right;
                    //Disable this property if your indicator requires custom values that cumulate with each new market data event. 
                    //See Help Guide for additional information.
                    IsSuspendedWhileInactive                    = true;
                    AddPlot(Brushes.Orange, "MyPlot");
                }
                else if (State == State.DataLoaded)
                {
                    CurrentDayOHL1 = CurrentDayOHL();
                }
            }
    
            protected override void OnBarUpdate()
            {
                Value[0] = CurrentDayOHL1.CurrentLow[0] + (CurrentDayOHL1.CurrentHigh[0] - CurrentDayOHL1.CurrentLow[0]);
            }
    
            #region Properties
    
            [Browsable(false)]
            [XmlIgnore]
            public Series<double> MyPlot
            {
                get { return Values[0]; }
            }
            #endregion
    This will plot this as a line all the way to the current bar, changing as the calculation changes.

    Please let us know if we may be of further assistance to you.
    Kate W.NinjaTrader Customer Service

    Comment


      #3
      Thanks. This appears to be plotting a line at the high of the day only. The calcs look right though...

      Comment


        #4
        Hello EthanHunt,

        Thank you for your reply.

        That would be because I used your calculation, which simply subtracts the low from the high and then adds it again to the high, leaving you with a value equal to the high. You can absolutely adjust the calculation however you like.

        Please let us know if we may be of further assistance to you.
        Kate W.NinjaTrader Customer Service

        Comment


          #5
          You're correct, I fixed it. Thanks

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Barry Milan, Today, 10:35 PM
          1 response
          8 views
          0 likes
          Last Post NinjaTrader_Manfred  
          Started by WeyldFalcon, 12-10-2020, 06:48 PM
          14 responses
          1,428 views
          0 likes
          Last Post Handclap0241  
          Started by DJ888, Yesterday, 06:09 PM
          2 responses
          9 views
          0 likes
          Last Post DJ888
          by DJ888
           
          Started by jeronymite, 04-12-2024, 04:26 PM
          3 responses
          40 views
          0 likes
          Last Post jeronymite  
          Started by bill2023, Today, 08:51 AM
          2 responses
          16 views
          0 likes
          Last Post bill2023  
          Working...
          X