Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Floating-Point Arithmetic

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

    Floating-Point Arithmetic

    Applies to NinjaTrader 7 and NinjaTrader 8

    Some common problems that you may encounter when comparing different double values are the caveats involved with floating-point arithmetic. Because of the way computers store floating-point numbers, under certain conditions your value will be an approximate of the actual decimal number you wanted. If this situation arises in your code, your comparison logic may not execute as you had intended even if your logic was mathematically sound on paper. To address this issue you will need to use a range comparison that takes into account the slight differences in the least significant digits of the floats.

    For example, under normal mathematics we would assume double x is equivalent to double y.
    Code:
    double x = 90.10;
    double y = 100 * 0.9010;
    Print(“double x: ” + x);
    Print(“double y: ” + y);
    Even the output of this code segment suggests they are the same:

    Code:
    double x = 90.1
    double y = 90.1
    Unfortunately, as demonstrated by this code segment, they are not.

    Code:
    bool c = (x == y);
    Print(“x equals y: ” + c);
    This segment outputs the following:
    Code:
    x equals y: False
    This means when we try to check for equality it would never evaluate to true even if it does mathematically.
    Code:
    if (x == y)
         // Do something. This will never be true.
    Instead of comparing double x to y for an exact equality we will need to check a range.
    Code:
    if (Math.Abs(x – y) < 0.0001)
         // Do something
    The arbitrary constant you choose to compare the range with should match the precision and accuracy of the floating-point numbers you are comparing.

    Alternatively, you can check the difference between the two variables against the double.Epsilon field. double.Epsilon field represents the smallest possible double value.

    Code:
    if (x – y < double.Epsilon)
         // Do something
    You can also use a Compare() method to accurately compare floating-point numbers. Take note that this method should only be used to compare price values since its precision is based on the instrument’s tick size and may be unsuited for use in other floating-point situations.

    Code:
    double newPriceRange = Close[0] - Open[0];
    double oldPriceRange = Close[1] - Open[1];
    if (Instrument.MasterInstrument.Compare(newPriceRange, oldPriceRange) == 1)
    {
     // Do something				
    }
    The Compare() method returns a value of “1” if the first parameter is greater than the second, “-1” if the first parameter is less than the second, and “0” if the first parameter is equal to the second.

    For a more formal analysis of floating-point arithmetic, there are many resources online:

    Introducing the basic concepts of floating-point arithmetic: number formats, accuracy and precision, and round-off error. Includes a discussion of the .NET floating-point types.
    Last edited by NinjaTrader_Jesse; 06-03-2015, 12:49 PM.
    Josh P.NinjaTrader Customer Service

Latest Posts

Collapse

Topics Statistics Last Post
Started by jclose, Today, 09:37 PM
0 responses
5 views
0 likes
Last Post jclose
by jclose
 
Started by WeyldFalcon, 08-07-2020, 06:13 AM
10 responses
1,413 views
0 likes
Last Post Traderontheroad  
Started by firefoxforum12, Today, 08:53 PM
0 responses
11 views
0 likes
Last Post firefoxforum12  
Started by stafe, Today, 08:34 PM
0 responses
11 views
0 likes
Last Post stafe
by stafe
 
Started by sastrades, 01-31-2024, 10:19 PM
11 responses
169 views
0 likes
Last Post NinjaTrader_Manfred  
Working...
X