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

Decimal to Float Problem

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

    Decimal to Float Problem

    I'm trying to draw a line with the following code:

    graphics.DrawLine(new Pen(Color.Blue), x1, y1,x2, y2);

    I define x1,y1,x2,y2 in the variable section as double vars. In the compilation process NT gives me the following messages:

    1-The best overloaded method match for 'System.Drawing.Graphics.DrawLine(System.Drawing.P en,float,float,float,float,)
    2-Argument '2': cannot convert from 'double' to 'float'
    3-Argument '3': cannot convert from 'double' to 'float'
    4-Argument '4': cannot convert from 'double' to 'float'
    5-Argument '5': cannot convert from 'double' to 'float'

    any Ideas how I can make it work?

    Regards

    #2
    Try casting to a float such as:

    graphics.DrawLine(new Pen(Color.Blue), (float) x1, (float) y1....)

    I believe that should work.
    RayNinjaTrader Customer Service

    Comment


      #3
      Thanks it works.


      Originally posted by NinjaTrader_Ray View Post
      Try casting to a float such as:

      graphics.DrawLine(new Pen(Color.Blue), (float) x1, (float) y1....)

      I believe that should work.

      Comment


        #4
        Excellent, glad to have been of help.
        RayNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        237 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Started by TraderG23, 12-08-2023, 07:56 AM
        9 responses
        382 views
        1 like
        Last Post Gavini
        by Gavini
         
        Started by oviejo, Today, 12:28 AM
        0 responses
        1 view
        0 likes
        Last Post oviejo
        by oviejo
         
        Started by pechtri, 06-22-2023, 02:31 AM
        10 responses
        125 views
        0 likes
        Last Post Leeroy_Jenkins  
        Started by judysamnt7, 03-13-2023, 09:11 AM
        4 responses
        59 views
        0 likes
        Last Post DynamicTest  
        Working...
        X