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 cmoran13, 04-16-2026, 01:02 PM
    0 responses
    43 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    25 views
    0 likes
    Last Post PaulMohn  
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    163 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    98 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    158 views
    2 likes
    Last Post CaptainJack  
    Working...
    X