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

setting a ProfitTarget() for multiple contracts

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

    setting a ProfitTarget() for multiple contracts

    I'm try to make a strategy where I enter 2 contracts long/short and when the profit target gets met, I need it to close only one contract. Is this possible? If so how?

    Thanks in advance!

    #2
    Hello,
    Using the SetProfitTarget() method you would need to use two different orders when entering and use a different entry signal for each and set the from entry signal in one of them to the SetProfitTarget arguement.
    For example:
    Code:
    if(/*Condition for entry*/)
    {
        EnterLong("entry1");
        EnterLong("otherentry");
    
        SetTrailStop("entry1", CalculationMode.Ticks, 10);
    }
    If we can be of any other assistance please let us know.
    Cody B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by MacDad, 02-25-2024, 11:48 PM
    7 responses
    158 views
    0 likes
    Last Post loganjarosz123  
    Started by Belfortbucks, Today, 09:29 PM
    0 responses
    7 views
    0 likes
    Last Post Belfortbucks  
    Started by zstheorist, Today, 07:52 PM
    0 responses
    7 views
    0 likes
    Last Post zstheorist  
    Started by pmachiraju, 11-01-2023, 04:46 AM
    8 responses
    151 views
    0 likes
    Last Post rehmans
    by rehmans
     
    Started by mattbsea, Today, 05:44 PM
    0 responses
    6 views
    0 likes
    Last Post mattbsea  
    Working...
    X