Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Formatting numbers

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

    Formatting numbers

    Applies to NinjaTrader 8 and NinjaTrader 7

    String formatting on numbers is very useful for creating readable output. This can be done through the use of the number object’s ToString() method.

    A common practice is printing out mathematical operations with the use of the ToString() method on the double object. What usually happens is the printing of a long string containing all the decimal places existing in the double. This sometimes makes output cluttered and hard to read. Luckily, C# has a robust set of string formatting options available to make the string more comprehendible.

    Here is a list of common formatting options available in the ToString() method:
    Code:
    double c = [COLOR=Black][FONT=&quot]10.25693[/FONT][/COLOR];
    Print("No formatting: " + c.ToString());
    Print("Currency formatting: " + c.ToString("C"));
    Print("Exponential formatting: " + c.ToString("E"));
    Print("Fixed-point formatting: " + c.ToString("F2"));
    Print("General formatting: " + c.ToString("G"));
    Print("Percent formatting: " + c.ToString("P0"));
    Print("Formatted to 2 decimal places: " + c.ToString("N2"));
    Print("Formatted to 3 decimal places: " + c.ToString("N3"));
    Print("Formatted to 4 decimal places: " + c.ToString("N4"));
    The corresponding output is as follows:
    Code:
    [FONT=&quot]No formatting: 10.25693[/FONT]
    [FONT=&quot]Currency formatting: $10.26[/FONT]
    [FONT=&quot]Exponential formatting: 1.025693E+001[/FONT]
    [FONT=&quot]Fixed-point formatting: 10.26[/FONT]
    [FONT=&quot]General formatting: 10.25693[/FONT]
    [FONT=&quot]Percent formatting: 1,026 %[/FONT]
    [FONT=&quot]Formatted to 2 decimal places: 10.26[/FONT]
    [FONT=&quot]Formatted to 3 decimal places: 10.257[/FONT]
    [FONT=&quot]Formatted to 4 decimal places: 10.2569[/FONT]
    For custom formatting you can use the following:
    Code:
    double phoneNumber = 9162031022;
    Print("Phone number: " + phoneNumber.ToString("(###) ### - ####"));
    Corresponding output:
    Code:
    [FONT=&quot]Phone number: (916) 203 - 1022[/FONT]
    For more information on general string formatting this guide may be of use. Many other resources can be found online through a google search as well.
    Last edited by NinjaTrader_Jesse; 06-03-2015, 12:43 PM.
    Josh P.NinjaTrader Customer Service

Latest Posts

Collapse

Topics Statistics Last Post
Started by warreng86, 11-10-2020, 02:04 PM
6 responses
1,359 views
0 likes
Last Post mathewlo  
Started by Perr0Grande, Today, 08:16 PM
0 responses
5 views
0 likes
Last Post Perr0Grande  
Started by elderan, Today, 08:03 PM
0 responses
9 views
0 likes
Last Post elderan
by elderan
 
Started by algospoke, Today, 06:40 PM
0 responses
10 views
0 likes
Last Post algospoke  
Started by maybeimnotrader, Today, 05:46 PM
0 responses
14 views
0 likes
Last Post maybeimnotrader  
Working...
X