Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Chart Middle Mouse Click
Collapse
X
-
Hello dtl-saw,
Thank you for writing in.
I have submitted your feedback as a feature request. We value customer feedback in improving our platform!
Meanwhile, what you could do is create an indicator that simply will plot the value of CurrentBar.
Here's an example:
Code:protected override void OnStateChange() { if (State == State.SetDefaults) { IsOverlay = true; IsAutoScale = false; AddPlot(Brushes.Yellow, "Current Bar"); } } protected override void OnBarUpdate() { Value[0] = CurrentBar; } public override string FormatPriceMarker(double price) { // we want to remove the trailing decimals from the plot return price.ToString("N0"); }
Please, let us know if we may be of further assistance.Zachary G.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, Yesterday, 11:51 AM
|
0 responses
18 views
0 likes
|
Last Post
by CarlTrading
Yesterday, 11:51 AM
|
||
|
Started by CarlTrading, Yesterday, 11:48 AM
|
0 responses
23 views
0 likes
|
Last Post
by CarlTrading
Yesterday, 11:48 AM
|
||
|
Started by CaptainJack, 03-25-2026, 09:53 PM
|
0 responses
27 views
0 likes
|
Last Post
by CaptainJack
03-25-2026, 09:53 PM
|
||
|
Started by CaptainJack, 03-25-2026, 09:51 PM
|
0 responses
15 views
0 likes
|
Last Post
by CaptainJack
03-25-2026, 09:51 PM
|
||
|
Started by Mindset, 03-23-2026, 11:13 AM
|
0 responses
22 views
0 likes
|
Last Post
by Mindset
03-23-2026, 11:13 AM
|

Comment