Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Display Actual Value Rather Than K

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

    Display Actual Value Rather Than K

    I have an indicator that for values >= 100,000 displays 100K for the Price Marker and in the Data Box. How do I make it display the actual value rather than rounding to K?

    #2
    Hello,
    Thank you for the post.

    For this you can use FormatPriceMarker : https://ninjatrader.com/support/help...ightsub=format

    A format of N4 will make a Decimal of 4 places, you can also use other format specifiers like the following:

    Code:
    public override string FormatPriceMarker(double price)
    {
    	return price.ToString();
    }
    This would simply make a string from the price which is the full numeric value instead of the formatted K value.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DJ888, 04-16-2024, 06:09 PM
    4 responses
    12 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by terofs, Today, 04:18 PM
    0 responses
    11 views
    0 likes
    Last Post terofs
    by terofs
     
    Started by nandhumca, Today, 03:41 PM
    0 responses
    7 views
    0 likes
    Last Post nandhumca  
    Started by The_Sec, Today, 03:37 PM
    0 responses
    3 views
    0 likes
    Last Post The_Sec
    by The_Sec
     
    Started by GwFutures1988, Today, 02:48 PM
    1 response
    9 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Working...
    X