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 SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      54 views
      0 likes
      Last Post SalmaTrader  
      Started by CarlTrading, 07-05-2026, 01:16 PM
      0 responses
      25 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 06-17-2026, 10:32 AM
      0 responses
      17 views
      0 likes
      Last Post CaptainJack  
      Started by kinfxhk, 06-17-2026, 04:15 AM
      0 responses
      23 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 06-17-2026, 04:06 AM
      0 responses
      24 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X