Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Change Text on Chart after Stop Loss executes

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

    Change Text on Chart after Stop Loss executes

    I would appreciate some guidance...

    I am using
    Code:
    ExitLong ("Condition 4");
    trying to replace "Stop loss" or add to "Stop loss" the text "Condition 4" on my chart.

    The stop loss is firing perfectly, and I can compile without error, but the "Condition 4" is not appearing on the chart.

    I also tried
    Code:
    ExitLong(string1)
    wherein string1 was "Condition 4" but like above, no compiling error but no printing on the chart either.

    As I have several conditions that close a trade, I'd like to be able to READ some text on the chart instead of figuring it out every time.

    Thanks in advance...The ExitLong help section wasn't much help to me.

    #2
    Hello sarasotavince,

    Thank you for your post.

    You will want to add TraceOrders = true; to the Initialize() method.

    This will print out the orders to the Output window (Tools -> Output Window) and what is occuring with them.

    If you do not see any outputs for the Exit() order then it is highly likely that the condition for the Exit() is not being met.
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      The Exit Order is firing (and completing without issue).

      All I need to do is add TEXT to the chart to tell me which Exit Condition was triggered. The default "Stop Loss" does tell me which condition was utilized.

      So, any way to add some text to the chart besides STOP LOSS? Maybe my question wasn't so clear earlier.

      Comment


        #4
        sarasotavince,

        I see what you mean now.

        You need to set the Plot Executions from the Data Series window to Text and Marker

        Right click on the Chart and select Data Series...

        Find the property PlotExecutions on the far bottom right list.
        Cal H.NinjaTrader Customer Service

        Comment


          #5
          Originally posted by sarasotavince View Post
          The Exit Order is firing (and completing without issue).

          All I need to do is add TEXT to the chart to tell me which Exit Condition was triggered. The default "Stop Loss" does tell me which condition was utilized.

          So, any way to add some text to the chart besides STOP LOSS? Maybe my question wasn't so clear earlier.
          You need to use the correct syntax.
          Code:
          ExitLong ("Condition 4","");
          if you want to show the same text for all orders. Otherwise use the orderName where the empty sting is located.

          Comment


            #6
            Yes, that did it.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by cre8able, Today, 01:16 PM
            2 responses
            9 views
            0 likes
            Last Post cre8able  
            Started by chbruno, 04-24-2024, 04:10 PM
            3 responses
            48 views
            0 likes
            Last Post NinjaTrader_Gaby  
            Started by samish18, Today, 01:01 PM
            1 response
            7 views
            0 likes
            Last Post NinjaTrader_LuisH  
            Started by WHICKED, Today, 12:56 PM
            1 response
            9 views
            0 likes
            Last Post NinjaTrader_Gaby  
            Started by WHICKED, Today, 12:45 PM
            1 response
            11 views
            0 likes
            Last Post NinjaTrader_Gaby  
            Working...
            X