thanks for any help
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
HiLo Price bar with dot that floats with price??
Collapse
X
-
HiLo Price bar with dot that floats with price??
I am using a 610 tick chart with hilo bars. Is there a way or an indicator out there in which a dot on the hilo bar actively floats with price. I figured out how to get a static dot (EMA with period of 1) on bar close but I want the dot to actively move on the bar until it closes.
thanks for any helpTags: None
-
Hello,
If you have the indicator set to CalculateOnBarClose = false you could create a dot drawing object that will update with each oncoming tick.
For example:
If we can be of any other assistance please let us know.Code:protected override void Initialize() { CalculateOnBarClose = false; } protected override void OnBarUpdate() { DrawDot("myDot", true, 0, Close[0], Color.Red); }Cody B.NinjaTrader Customer Service
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
85 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
47 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
29 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
32 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
67 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment