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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    633 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    364 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    105 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    567 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    568 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X