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 sjsj2732, Yesterday, 04:31 AM
      0 responses
      22 views
      0 likes
      Last Post sjsj2732  
      Started by NullPointStrategies, 03-13-2026, 05:17 AM
      0 responses
      280 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      279 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      130 views
      1 like
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      90 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Working...
      X