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 arvidvanstaey, Today, 02:19 PM
      2 responses
      7 views
      0 likes
      Last Post arvidvanstaey  
      Started by jordanq2, Today, 03:10 PM
      0 responses
      5 views
      0 likes
      Last Post jordanq2  
      Started by traderqz, Today, 12:06 AM
      10 responses
      18 views
      0 likes
      Last Post traderqz  
      Started by algospoke, 04-17-2024, 06:40 PM
      5 responses
      46 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by mmckinnm, Today, 01:34 PM
      3 responses
      6 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Working...
      X