Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

truncating/ rounding after 4,5 decimals

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

    truncating/ rounding after 4,5 decimals

    // Prints the highest high value over the last 20 periods
    double value = MAX(High, 20)[0];
    Print("The current MAX value is " + value.ToString());

    The above code gives the output as a lot of numbers following the decimal
    How do I truncate / round the values to the nearest 4,5 decimal


    #2
    I think the following code should give me the value in 4 decimals

    // Prints the highest high value over the last 20 periods
    double value = MAX(High, 20)[0];
    Print("The current MAX value is " + Math.round(value,4).ToString());



    Funny huh...My question and I am answering it myself
    I shall have to wait for Sunday afternoon to try it out live when market opens

    Comment


      #3
      Hello rjngh2005,

      Yes, Math.Round is what you need for this.
      Rounds a value to the nearest integer or to the specified number of fractional digits.
      Ryan M.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      173 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      328 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      252 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      354 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      181 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X