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

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 geddyisodin, Today, 05:20 AM
    2 responses
    16 views
    0 likes
    Last Post geddyisodin  
    Started by hazylizard, Today, 08:38 AM
    0 responses
    6 views
    0 likes
    Last Post hazylizard  
    Started by Max238, Today, 01:28 AM
    5 responses
    42 views
    0 likes
    Last Post Max238
    by Max238
     
    Started by giulyko00, Yesterday, 12:03 PM
    3 responses
    13 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Started by habeebft, Today, 07:27 AM
    1 response
    16 views
    0 likes
    Last Post NinjaTrader_ChristopherS  
    Working...
    X