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 kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
89 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
92 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
70 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
87 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
64 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment