Here is a screenshot of that part of the code. I am sure this is a newbie c# issue rather than an NT issue but could use a little help:
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Cannot implicitly convert double to float
Collapse
X
-
Cannot implicitly convert double to float
Here is a screenshot of some errors I am getting:
Here is a screenshot of that part of the code. I am sure this is a newbie c# issue rather than an NT issue but could use a little help:
-
Hello swcooke,
The screenshot of the code does not provide line numbers. Was this a screenshot taken of the NinjaScript Editor?
How did you take this screenshot? Was this with the Windows Snipping Tool?
I am unable to match the error with a specific line.
However, the issue is that somewhere you are assigning a float value to a double variable type or vice versa.
What are the lines causing the error?Chelsea B.NinjaTrader Customer Service
-
Hello swcooke,
The error message references line 99.
start.X = x - barWidth * 0.5f;
We can see that the value being assigned to the .X of the start object is a float because of the 0.5f.
However, I am not able to see what the start object is declared as. Its highly likely that the .X property of the start object is a double. This would mean you are trying to assign a float value to a double property type which will fail.
You would need to cast this as a double.
Below is a public link to the microsoft documentation on System.Convert.ToDouble().
https://msdn.microsoft.com/en-us/lib...v=vs.110).aspxChelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
81 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
42 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
64 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
55 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment