Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Cannot implicitly convert double to float

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Cannot implicitly convert double to float

    Here is a screenshot of some errors I am getting:
    Free online storage and sharing with Screencast.com. 2 GB of storage and 2 GB of bandwidth per month for free. We won't compress, alter or take ownership of your content.


    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:
    Free online storage and sharing with Screencast.com. 2 GB of storage and 2 GB of bandwidth per month for free. We won't compress, alter or take ownership of your content.

    #2
    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

    Comment


      #3
      Sorry about that. Here is another screenshot that shows the line numbers:
      Free online storage and sharing with Screencast.com. 2 GB of storage and 2 GB of bandwidth per month for free. We won't compress, alter or take ownership of your content.

      Comment


        #4
        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).aspx
        Chelsea B.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by bortz, 11-06-2023, 08:04 AM
        47 responses
        1,602 views
        0 likes
        Last Post aligator  
        Started by jaybedreamin, Today, 05:56 PM
        0 responses
        8 views
        0 likes
        Last Post jaybedreamin  
        Started by DJ888, 04-16-2024, 06:09 PM
        6 responses
        18 views
        0 likes
        Last Post DJ888
        by DJ888
         
        Started by Jon17, Today, 04:33 PM
        0 responses
        4 views
        0 likes
        Last Post Jon17
        by Jon17
         
        Started by Javierw.ok, Today, 04:12 PM
        0 responses
        12 views
        0 likes
        Last Post Javierw.ok  
        Working...
        X