Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Floating tick counter for Price on Volume (PoV) charts
Collapse
X
-
Floating tick counter for Price on Volume (PoV) charts
I love and use the Price on Volume (PoV) charts. My main chart is a 1000 tick PoV chart and I have the built in tick counter indicator on which works fine. However, I'd like to have the tick counter floating at the current bar. I've found some community indicators that will float the tick countdown but they don't work on a PoV chart. It seems like they only work on tick, time, or volume charts. Has anyone come up with a floating bar countdown indicator that will work on a PoV chart? I've tried modifying an existing indicator but my coding skills are not up to snuff. Any help is appreciated!Tags: None
-
Hello smessall,
Thank you for your post.
My "floating tick counter" do you simply mean that the Tick Counter (ticks remaining) is displayed under the current bar?
You could create a copy of the built-in TickCounter indicator and use Draw.Text() instead of Draw.TextFixed() to display the text (tick1) info under the CurrentBar.
For example, this would display the text 5 ticks below the low of the CurrentBar.
Code:Draw.Text(this, "NSInfo", tick1, 0, Low[0] - 5*TickSize);
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
557 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
545 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment