Announcement

Collapse
No announcement yet.

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 Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      558 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      324 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      545 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      547 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X