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

Error in the If statement

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

    Error in the If statement

    I found a strange situation, this condition returns false on different data series and timeframes

    if ((175.76) == (175.71 + 0.05))
    Print("ok");
    else
    Print("???");

    175.76 == (175.70 + 0.06) - true
    175.76 == (175.71 + 0.05) - false
    175.76 == (175.72 + 0.04) - true
    175.76 == (175.73 + 0.03) - true
    175.76 == (175.74 + 0.02) - false
    175.76 == (175.75 + 0.01) - true
    175.76 == (175.76 + 0.00) - true
    Attached Files

    #2
    that looks like it might be a double rounding error. Can you cast them all to the same data type?
    Last edited by cashinvestor; 06-25-2020, 03:43 AM.

    Comment


      #3
      Originally posted by cashinvestor View Post
      that looks like it might be a double rounding error. Can you cast them all to the same data type?
      Yes, you are right. I tried Instrument.MasterInstrument.RoundToTickSize function, and it works.

      Thank you!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by rdtdale, Today, 01:02 PM
      0 responses
      3 views
      0 likes
      Last Post rdtdale
      by rdtdale
       
      Started by alifarahani, Today, 09:40 AM
      3 responses
      15 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by RookieTrader, Today, 09:37 AM
      4 responses
      18 views
      0 likes
      Last Post RookieTrader  
      Started by PaulMohn, Today, 12:36 PM
      0 responses
      8 views
      0 likes
      Last Post PaulMohn  
      Started by love2code2trade, 04-17-2024, 01:45 PM
      4 responses
      41 views
      0 likes
      Last Post love2code2trade  
      Working...
      X