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 TraderBCL, Today, 04:38 AM
2 responses
7 views
0 likes
Last Post TraderBCL  
Started by martin70, 03-24-2023, 04:58 AM
14 responses
105 views
0 likes
Last Post martin70  
Started by Radano, 06-10-2021, 01:40 AM
19 responses
606 views
0 likes
Last Post Radano
by Radano
 
Started by KenneGaray, Today, 03:48 AM
0 responses
4 views
0 likes
Last Post KenneGaray  
Started by thanajo, 05-04-2021, 02:11 AM
4 responses
471 views
0 likes
Last Post tradingnasdaqprueba  
Working...
X