Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Converting Int to Double

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

    Converting Int to Double

    Hi there

    Just wondering why the following does not complile?

    I attempt to convert the Integer, "barsAgo", into a double, in order that i can create a fraction from it, which is then rounded up.

    double holder=0;
    for (int barsAgo = 1; barsAgo <= 10; barsAgo++)

    { holder=barsAgo;
    if (Low[Math.Round(holder/5,0)] < low_price || low_price == 0)
    {low_price= Low[Math.Round(holder/5,0)] ;}
    }

    Any pointers greatly appreciated...

    Tks
    Ben Heaton

    #2
    Math.Round(holder/5,0) return a double which you need to cast to an int like "(int) Math.Round(holder/5,0)".

    Also: clicking on the error message on the error window always brings you to the erroneous code line and provides you an idea what's going wrong.

    Comment


      #3
      Excellent - Tks for that - BH

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by bortz, 11-06-2023, 08:04 AM
      47 responses
      1,605 views
      0 likes
      Last Post aligator  
      Started by jaybedreamin, Today, 05:56 PM
      0 responses
      8 views
      0 likes
      Last Post jaybedreamin  
      Started by DJ888, 04-16-2024, 06:09 PM
      6 responses
      18 views
      0 likes
      Last Post DJ888
      by DJ888
       
      Started by Jon17, Today, 04:33 PM
      0 responses
      4 views
      0 likes
      Last Post Jon17
      by Jon17
       
      Started by Javierw.ok, Today, 04:12 PM
      0 responses
      13 views
      0 likes
      Last Post Javierw.ok  
      Working...
      X