Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Display Actual Value Rather Than K
Collapse
X
-
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?Tags: None
-
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:
This would simply make a string from the price which is the full numeric value instead of the formatted K value.Code:public override string FormatPriceMarker(double price) { return price.ToString(); }
I look forward to being of further assistance.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
65 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
41 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
23 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
26 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
52 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment