Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Cs0266

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

    Cs0266

    I don't know exactly what the problem is, but what I am trying to do is dictate the amount risked on each trade.

    I have in variables:

    privateint aTRduration = 10;
    privateint dOLLARrisk = 500;
    privateint QUANTITY = 0;

    and the calculation that I want to do before I go long is:

    QUANTITY = DOLLARrisk / ATR(ATRduration) * 50;

    With the desire to go long QUANTITY number of ES contracts depending on the ATR is at that time for the user inputed duration.

    When I compile, I get CS0266 - click for info (which doesn't give me anything) and the Error says "Cannot implicityly convert type 'double' to 'int'. An explicit conversion exists (are you missing a cast?)

    Other than the one that should be on my leg from the last time that I kicked my computer, I don't think that I'm missing one.

    Any explanation and advice is very much appreciated.
    Last edited by 8DTK8; 10-23-2008, 02:43 PM.

    #2
    Hello,

    QUANTITY needs to be declared as a double type.

    So use:

    private double QUANTITY = 0.0;
    DenNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    164 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    317 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    245 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    350 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    179 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X