private ChartScale MyChartScale;
int Y;
double priceHover;
protected void MouseMoved(object sender, MouseEventArgs e)
{
TriggerCustomEvent(o =>
{
Y = ChartingExtensions.ConvertToVerticalPixels(e.GetPosition(ChartControl as IInputElement).Y, ChartControl.PresentationSource);
priceHover = MyChartScale.GetValueByY(Y);
if (priceHover != MyChartScale.GetValueByY(Y))
{
Print(String.Format("{0}", priceHover));
}
}, null);
e.Handled = true;
}
protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
base.OnRender(chartControl, chartScale);
MyChartScale = chartScale;
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Updating price variable on mouse hover over price
Collapse
X
-
Updating price variable on mouse hover over price
I am trying to make a dynamic variable capture the price that the mouse is currently hovering over on the chart, but this code seems to completely freeze NT8 when I enable the Strategy:
Code:Tags: None
-
Hi, thanks for your post.
I am not aware of a supported example for a mouse move event in NinjaTrader 8. I found this one for NinjaTrader 7:
This Custom Crosshair will allow you show the horizontal and/or vertical lines. You also have the option to change the colors of the lines and markers. Critical – Specifically for some indicators, it will prompt that you are running newer versions of @SMA, @EMA, etc. and ask if you want to replace, press 'No' Update […]
I have asked my colleague if they know of any examples in NT8. Ill post them if we find any.
Thanks in advance for your patience.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
87 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
134 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
118 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
67 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment