Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Problem with OnCalculateMinMax()

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

    Problem with OnCalculateMinMax()

    I am not sure if I understand OnCalculateMinMax() .

    I have added the test method in my code ( Obviously I have also set IsAutoScale = true; in SetDefault state :

    Code:
    public override void OnCalculateMinMax()
    {
    // make sure to always start fresh values to calculate new min/max values
    double tmpMin = double.MaxValue;
    double tmpMax = double.MinValue;
    
    
    tmpMin = 68.50;
    tmpMax = 74.00;
    
    // Finally, set the minimum and maximum Y-Axis values
    MinValue = tmpMin;
    MaxValue = tmpMax;
    }
    I should expect the chart range set to 74.00 and 68.50.

    That's not what I get.


    #2
    Hello blar58,

    Thank you for the post.

    What is the result that you see?

    Have you also tried placing the script in a new panel where the only item being plotted is that item?


    I look forward to being of further assistance.

    Comment


      #3
      Jesse

      I see the whole chart range not the range set by OnCalculateMinMax()
      Attached Files

      Comment


        #4
        If I put the OnCalculate in a new panel it shows the right scale.
        But what I need to do is scaling the chart panel
        Attached Files

        Comment


          #5
          Hello blar58,

          If you have it in the price panel you would need to right click the chart -> Data series and uncheck auto scale. The DataSeries will also be autoscaled by the chart in that use case.

          I look forward to being of further assistance.

          Comment


            #6
            Thank you Jesse !

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by charlesugo_1, 05-26-2026, 05:03 PM
            0 responses
            68 views
            0 likes
            Last Post charlesugo_1  
            Started by DannyP96, 05-18-2026, 02:38 PM
            1 response
            151 views
            0 likes
            Last Post NinjaTrader_ChelseaB  
            Started by CarlTrading, 05-11-2026, 05:56 AM
            0 responses
            162 views
            0 likes
            Last Post CarlTrading  
            Started by CarlTrading, 05-10-2026, 08:12 PM
            0 responses
            100 views
            0 likes
            Last Post CarlTrading  
            Started by Hwop38, 05-04-2026, 07:02 PM
            0 responses
            288 views
            0 likes
            Last Post Hwop38
            by Hwop38
             
            Working...
            X