Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Chartcontrol commands: migration from NT7 to NT8

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

    Chartcontrol commands: migration from NT7 to NT8

    Hello,
    I have this code being part of an indicator for NT7.
    The code centers the chart within the chart window so that the last price is at y/2 of the chart.

    private void CentrePrice_Click(object sender, EventArgs e)
    { double yAxisSize;
    if (this.ChartControl.YAxisRangeTypeRight == YAxisRangeType.Fixed)
    {yAxisSize = this.ChartControl.FixedPanelMaxRight -
    this.ChartControl.FixedPanelMinRight;
    }
    else
    {this.ChartControl.YAxisRangeTypeRight = YAxisRangeType.Fixed;
    yAxisSize = this.ChartControl.Bounds.Height * TickSize / yAxisPixelsPerTick;
    }
    double center = this.GetCurrentBid();
    if (CurrentBar != this.LastBarIndexPainted)
    center = Close[CurrentBar - this.LastBarIndexPainted];
    this.ChartControl.FixedPanelMaxRight = center + (yAxisSize / 2);
    this.ChartControl.FixedPanelMinRight = center - (yAxisSize / 2);
    ChartControl.ChartPanel.Invalidate();
    }


    NT8 does not contain the NT7 ChartControl functions:
    ChartControl.YAxisRangeTypeRight,
    YAxisRangeType.Fixed
    ChartControl.FixedPanelMaxRight
    ChartControl.Bounds.Height
    yAxisPixelsPerTick

    Is there a way to code this in NT8?

    Thanks

    #2
    Originally posted by jazzytrumpet View Post
    The code centers the chart within the chart window so that the last price is at y/2 of the chart.
    Is there a way to code this in NT8?
    To center the price vertically, no coding is necessary. Simply check the "Center price on scale" box in the Data Series properties.
    Attached Files

    Comment


      #3
      Thanks a lot, tradesmart. This helps.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      153 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      305 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      244 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      345 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      176 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X