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

SetProfitTarget

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

    SetProfitTarget

    Hi, I want to have 3 different profit targets from one entry. So I execute a market order for 3 contracts and want o exit each contract with a separate target. Can you direct me to a resource or example on how to accomplish this? Thank you

    #2
    Hello pman777,

    Thank you for the post.

    You must have a unique signal name for each contract. You can write something similar to the following to set individual targets for the same entry.

    Code:
    EnterLong("Entry0");
    EnterLong("Entry1");
    EnterLong("Entry2");
    
    SetProfitTarget("Entry0", CalculationMode.Ticks, 5);
    SetProfitTarget("Entry1", CalculationMode.Ticks, 10);
    SetProfitTarget("Entry2", CalculationMode.Ticks, 20);
    Please let me know if I can assist further.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      Perfect ... thank you!

      Comment


        #4
        to correlate with the above recommendation, i set up 3 "SetStopLoss" commands as follows:

        SetStopLoss("Entry0",CalculationMode.Ticks, stopInTicks);
        SetStopLoss("Entry1",CalculationMode.Ticks, stopInTicks);
        SetStopLoss("Entry2",CalculationMode.Ticks, stopInTicks);


        But I get this compiler msg: " overload for method 'SetStopLoss' takes 3 arguments" ... any thoughts? thanks

        Comment


          #5
          Hello pman777,

          Thanks for the reply.

          You must use this overload to specify a signal name for SetStopLoss:

          SetStopLoss(string fromEntrySignal, CalculationMode mode, double value, bool isSimulatedStop)

          Pass in "false" for isSimulatedStop if you do not want a simulated stop.

          Please let me know if I can assist further.
          Chris L.NinjaTrader Customer Service

          Comment


            #6
            thank you!

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by ScottWalsh, Today, 04:29 PM
            0 responses
            3 views
            0 likes
            Last Post ScottWalsh  
            Started by rtwave, 04-12-2024, 09:30 AM
            2 responses
            21 views
            0 likes
            Last Post rtwave
            by rtwave
             
            Started by tsantospinto, 04-12-2024, 07:04 PM
            5 responses
            69 views
            0 likes
            Last Post tsantospinto  
            Started by cre8able, Today, 03:20 PM
            0 responses
            7 views
            0 likes
            Last Post cre8able  
            Started by Fran888, 02-16-2024, 10:48 AM
            3 responses
            49 views
            0 likes
            Last Post Sam2515
            by Sam2515
             
            Working...
            X