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

CloseOnProfitTarget

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

    CloseOnProfitTarget

    Wondering if it is possible to take the code from the CloseOnDrawdown Indicator found in the Ninja 7 downloads and reverse engineer it to close on ProfitTarget instead.

    So using the same logic to shut down a strategy once X profit objective is realized for the day.

    Thanks,
    Duke
    Attached Files

    #2
    Hello JamesDuke, and thank you for your question. Your approach is definitely feasible. I am going to include an emphasized code excerpt and a relevant helpguide page which I believe will aid you in putting together this strategy.

    Code:
    [FONT=Courier New]
                            if (!closing)
                            {
                                profitLoss = pos.GetProfitLoss(Close[0], 0);
                                btnActivate.Text = (drawdown + profitLoss).ToString();
                                textChanged = true;
    
    [B]// JDP Mon Sep  5 11:18:59 MDT 2016
    // I believe if you change -drawDown to a static value
    // to compare profitLoss to, this strategy will work
    // the way you would like
    [/B]                            [B]if (profitLoss < -drawdown)[/B]
                                {
                                    closing = true;
                                    pos.Close();
                                    Log("Max drawdown of " + drawdown + " reached and canceled all orders from " + pos.Instrument, LogLevel.Alert);
                                }
                            }[/FONT]


    Please let us know if there are any other ways we can help.
    Jessica P.NinjaTrader Customer Service

    Comment


      #3
      I do not know how to do that. I do not know how to code... that's why I am asking for help.

      Can you tweak the code for me?

      Comment


        #4
        Hello,

        While we are unable to code for you, our NinjaTrader Ecosystem does support quite a few NinjaScript Consultants who would be happy to further assist you. You can view NinjaTrader Ecosystem's supported NinjaScript consultants at the following link:






        You can locate the contact information for the partner on their direct webpage for any additional questions you may have. Since these partners are third party add-ons for NinjaTrader all pricing information will need to be obtained through the partner.


        Please let me know if you have any additional questions.


        Have a great day!

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Tim-c, Today, 03:54 AM
        0 responses
        3 views
        0 likes
        Last Post Tim-c
        by Tim-c
         
        Started by FrancisMorro, Today, 03:24 AM
        0 responses
        2 views
        0 likes
        Last Post FrancisMorro  
        Started by Segwin, 05-07-2018, 02:15 PM
        10 responses
        1,771 views
        0 likes
        Last Post Leafcutter  
        Started by Rapine Heihei, 04-23-2024, 07:51 PM
        2 responses
        31 views
        0 likes
        Last Post Max238
        by Max238
         
        Started by Shansen, 08-30-2019, 10:18 PM
        24 responses
        945 views
        0 likes
        Last Post spwizard  
        Working...
        X