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 Skifree, Yesterday, 11:38 PM
      1 response
      15 views
      0 likes
      Last Post NinjaTrader_LuisH  
      Started by Mathias79, Today, 10:38 AM
      6 responses
      21 views
      0 likes
      Last Post NinjaTrader_Clayton  
      Started by eladlevi, Today, 11:02 AM
      1 response
      6 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by Skifree, Yesterday, 11:41 PM
      2 responses
      13 views
      1 like
      Last Post eDanny
      by eDanny
       
      Started by TraderCro, 04-12-2024, 11:36 AM
      8 responses
      105 views
      0 likes
      Last Post NinjaTrader_ChristopherJ  
      Working...
      X