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.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by sjsj2732, 03-23-2026, 04:31 AM
    0 responses
    151 views
    0 likes
    Last Post sjsj2732  
    Started by NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    354 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    391 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    182 views
    1 like
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    138 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Working...
    X