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 rocketman7, Today, 01:00 AM
    0 responses
    1 view
    0 likes
    Last Post rocketman7  
    Started by wzgy0920, 04-20-2024, 06:09 PM
    2 responses
    27 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, 02-22-2024, 01:11 AM
    5 responses
    32 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, 04-23-2024, 09:53 PM
    2 responses
    74 views
    0 likes
    Last Post wzgy0920  
    Started by Kensonprib, 04-28-2021, 10:11 AM
    5 responses
    193 views
    0 likes
    Last Post Hasadafa  
    Working...
    X