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 Christopher_R, Today, 12:29 AM
0 responses
6 views
0 likes
Last Post Christopher_R  
Started by sidlercom80, 10-28-2023, 08:49 AM
166 responses
2,235 views
0 likes
Last Post sidlercom80  
Started by thread, Yesterday, 11:58 PM
0 responses
3 views
0 likes
Last Post thread
by thread
 
Started by jclose, Yesterday, 09:37 PM
0 responses
7 views
0 likes
Last Post jclose
by jclose
 
Started by WeyldFalcon, 08-07-2020, 06:13 AM
10 responses
1,415 views
0 likes
Last Post Traderontheroad  
Working...
X