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

Target Text

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

    Target Text

    I am wondering how to add text to my entry points. I have the target code but would like to say under the entry that the target is @ XXXX. Is this possible? Would think it would be pretty simple but I am just transitioning to ninja script. Thanks

    #2
    Hello tommyj, thanks for writing in.

    That can be done by calling Draw.Text from OnExecutionUpdate, or Draw.Text right after you perform the entry.





    The default execution markers also do this automatically. These can be set up through the Data Series menu.

    Please let me know if you have any questions on this material.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      So I have multiple entries that have different targets, I would think the draw.text linked to my entries would be the best route. Would this be done best after my entry/target/stop code? or should I set it up through the data series menu

      Comment


        #4
        Hello tommyj, thanks for your reply.

        The default execution plots will mark the entry price of each entry separately. If you would like to make your own logic that plots entries, you would need to detect the entry from OnExecutionUpdate. The most straight forward way of doing this would be to give your entries unique signal names e.g. EnterLong("MyEntry1");, EnterLong("MyEntry2") then check for the name in OnExecutionUpdate:

        if(execution.Name == "MyEntry1")
        {
        //Draw execution
        }
        Chris L.NinjaTrader Customer Service

        Comment


          #5
          Cool thanks

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by GussJ, 03-04-2020, 03:11 PM
          16 responses
          3,281 views
          0 likes
          Last Post Leafcutter  
          Started by WHICKED, Today, 12:45 PM
          2 responses
          19 views
          0 likes
          Last Post WHICKED
          by WHICKED
           
          Started by Tim-c, Today, 02:10 PM
          1 response
          9 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by Taddypole, Today, 02:47 PM
          0 responses
          5 views
          0 likes
          Last Post Taddypole  
          Started by chbruno, 04-24-2024, 04:10 PM
          4 responses
          53 views
          0 likes
          Last Post chbruno
          by chbruno
           
          Working...
          X