NinjaTrader Support Forum  

Go Back   NinjaTrader Support Forum > NinjaScript Educational Resources > Tips

Tips Official NinjaScript tips and tricks

Reply
 
Thread Tools Display Modes
Old 11-06-2007, 05:05 PM   #1
NinjaTrader_Josh
NinjaTrader Product Manager
 
NinjaTrader_Josh's Avatar
 
Join Date: May 2007
Location: Denver, CO
Posts: 17,458
Thanks: 1
Thanked 106 times in 70 posts
Default Floating-Point Arithmetic

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
In NinjaTrader 6.5 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:
http://docs.sun.com/source/806-3568/ncg_goldberg.html
http://www.codeproject.com/dotnet/Ex...int1.asp#terms
NinjaTrader_Josh is offline  
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Detect inflection point in MACD.Diff twas2007 Strategy Development 2 10-18-2007 12:51 PM
Pivot point sunnyrain Charting 1 10-12-2007 01:10 PM
Pivot Point Mod for Open & Close Times cutter Indicator Development 10 09-17-2007 12:17 PM
Point Change Charts SigmaTrader Suggestions And Feedback 2 07-10-2007 01:15 PM


All times are GMT -6. The time now is 06:09 AM.