Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Fibonacci text plot

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

    Fibonacci text plot

    Hello, I´ve seen some people asking about this, and some responses saying that this would be added to future devlopments for some years now but with no solution.

    Is there a way to add custom text to the Fib retracement indicator? Maybe someone can provide the code for Ninjascript to do so. Thank you very much!!!

    #2
    Hello Cronosis,

    Welcome to the NinjaTrader forums!

    Unfortunately, this has not been implemented at this time, and I would not have any resources to share with you.

    Please note, we receive many requests and cannot reasonably implement all requested features or changes. Interest is tracked internally and if enough interest is tracked, it would be weighed against how feasible it would be to make those changes to consider implementing, so we cannot offer an ETA or promise of fulfillment.

    When new features are implemented, they will be listed in the Release Notes page of the Help Guide. The ID number may be different than the internal feature request tracking ID, but the description of the feature will let you know if that feature has been implemented.

    If this important that you have this coded now, you can also contact a professional NinjaScript Consultant who would be eager to create or modify this script at your request or assist you with your script. The NinjaTrader Ecosystem has affiliate contacts who provide educational as well as consulting services. I will have a member of our NinjaTrader Ecosystem team follow up with you with a list of affiliate consultants who would be happy to create this script or any others at your request or provide one on one educational services.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by Cronosis View Post
      Hello, I´ve seen some people asking about this, and some responses saying that this would be added to future devlopments for some years now but with no solution.

      Is there a way to add custom text to the Fib retracement indicator? Maybe someone can provide the code for Ninjascript to do so. Thank you very much!!!
      If by "adding text" you mean levels and %s, yes there is a go-around ( NinjaTrader_ChelseaB - Correct me if wrong please). You can create a Fib template that includes your choice of levels, text, and location of the text, etc, and save the template with a name of your choice. Then if you want to code a fib in an indicator simply use the following with your templateName for the last parameter:

      Code:
      Draw.FibonacciRetracements(NinjaScriptBase owner, string tag, bool isAutoScale, int startBarsAgo, double startY, int endBarsAgo, double endY, bool isGlobal, string templateName)
      Cheers!
      Last edited by aligator; 01-31-2021, 07:54 PM.

      Comment


        #4
        Thank you very much for your response! What I mean is this, I use a method that determines my entries, stops and exits based on fibo levels, what I would like is the possibility to draw a fibo and have the text “entry, stop, take profit 1-2-3 in the levels that I use.

        I can avena template with the levels, which is what I have now, but I haven’t found a way to add the text.


        Originally posted by aligator View Post

        If by "adding text" you mean levels and %s, yes there is a go-around ( NinjaTrader_ChelseaB - Correct me if wrong please). You can create a Fib template that includes you choice of levels, text, and location of the text, etc, and save the template with a name of your choice. Then if you want to code a fib in an indicator simply the following and your templateName for the last parameter:

        Code:
        Draw.FibonacciRetracements(NinjaScriptBase owner, string tag, bool isAutoScale, int startBarsAgo, double startY, int endBarsAgo, double endY, bool isGlobal, string templateName)
        Cheers!

        Comment


          #5
          Originally posted by Cronosis View Post
          Thank you very much for your response! What I mean is this, I use a method that determines my entries, stops and exits based on fibo levels, what I would like is the possibility to draw a fibo and have the text “entry, stop, take profit 1-2-3 in the levels that I use.

          I can avena template with the levels, which is what I have now, but I haven’t found a way to add the text.
          You can certainly write an indicator to draw custom fibs levels ( or simple lines) and text as UI or even based on meeting certain conditions. I recall that there are several example indicators around that simply draw entry, targets, and stops lines on the right edge with user input. Do a search you might find one and modify it to your liking..

          Comment


            #6
            Hello aligator,

            I may have some confusion. This is to add custom text to the lines on the fibonacci? Like the sentence "hello custom text"?
            Chelsea B.NinjaTrader Customer Service

            Comment


              #7
              I think I may have some confusion as well. To express myself better I’m attaching an image from the mt4 platform that has this functionality where you can add custom text to predetermined level that will plot when you draw the fib retracementClick image for larger version

Name:	646C3FC2-1BD4-48E5-B794-08C1D1CC8180.png
Views:	726
Size:	16.5 KB
ID:	1139140

              Comment


                #8
                Hello Cronosis,

                Thank you for your post.

                This is Thomas from the NinjaTrader Ecosystem responding on behalf of my colleague Chelsea.

                You can search our extensive library of NinjaScript consultants through the link below. Simply enter a consultant name or search by using our filter categories. Once you have identified your consultants of choice, please visit each consultant's site for more information or contact them directly to learn more!

                https://ninjatraderecosystem.com/sea...mming-services

                Educators - https://ninjatraderecosystem.com/sea...ures=education

                You can locate the contact information for the consultants on their direct websites for any additional questions you may have. Since these consultants are third party services for NinjaTrader all pricing and support information will need to be obtained through the consultant.

                This NinjaTrader Ecosystem website is for educational and informational purposes only and should not be considered a solicitation to buy or sell a futures contract or make any other type of investment decision. The companies and services listed on this website are not to be considered a recommendation and it is the reader's responsibility to evaluate any product, service, or company. NinjaTrader Ecosystem LLC is not responsible for the accuracy or content of any product, service or company linked to on this website.

                Please let me know if you have any questions, concerns or if I can provide any further assistance by responding to this thread at your convenience.
                Thomas C.NinjaTrader Customer Service

                Comment


                  #9
                  Originally posted by Cronosis View Post
                  I think I may have some confusion as well. To express myself better I’m attaching an image from the mt4 platform that has this functionality where you can add custom text to predetermined level that will plot when you draw the fib retracementClick image for larger version  Name:	646C3FC2-1BD4-48E5-B794-08C1D1CC8180.png Views:	0 Size:	16.5 KB ID:	1139140
                  Obviously, this is not a Fibonacci, just some horizontal lines. But there are several drawing tools and indicators on NinjaTrader and Futures.io that are not exactly the same but pretty much do similar thing. Examples are RiskReward and RectangleWithPriceTarget in indicators and drawing tools. These have entry, target and stops. Just do searches and find them.

                  If you can program in Ninja then you can customize them as needed, otherwise you may want to hire someone to do it for you.

                  Also, I recommend to post the MT4 indicator file here and on Futures.io, there might be some motivated people to convert it to NT8 for free.

                  Comment


                    #10
                    Aligator, thank you again for your response. That is, in fact, a Fibonacci. As I mentioned is the default Fibonacci indicator in the MT4/5 platform, it allows you to edit not only the levels but also to add text such as the "Entry", "Stop Loss" and the "RR".

                    The reason why I asked specifically about Fibonacci is becasue my method is based on these levels as entries, stops and tps. Unfortunately I dont know how to program in Ninja but I will try to ask in futures.io if someone can code it.

                    Thank you very much!


                    Originally posted by aligator View Post

                    Obviously, this is not a Fibonacci, just some horizontal lines. But there are several drawing tools and indicators on NinjaTrader and Futures.io that are not exactly the same but pretty much do similar thing. Examples are RiskReward and RectangleWithPriceTarget in indicators and drawing tools. These have entry, target and stops. Just do searches and find them.

                    If you can program in Ninja then you can customize them as needed, otherwise you may want to hire someone to do it for you.

                    Also, I recommend to post the MT4 indicator file here and on Futures.io, there might be some motivated people to convert it to NT8 for free.

                    Comment


                      #11
                      Originally posted by Cronosis View Post
                      Aligator, thank you again for your response. That is, in fact, a Fibonacci. As I mentioned is the default Fibonacci indicator in the MT4/5 platform, it allows you to edit not only the levels but also to add text such as the "Entry", "Stop Loss" and the "RR".
                      Sorry, I did not read anywhere this was the MT4 "default Fibonacci indicator." I thought it was a custom indicator.

                      NinjaTrader is not open source and only they can modify it. You would need a custom Fib indicator to draw what you need. Good Luck,,
                      Last edited by aligator; 02-01-2021, 02:48 PM.

                      Comment


                        #12
                        Its ok, Ive postes in Futures.io to see if someone can helo me, I appreciate your input!


                        Originally posted by aligator View Post

                        Sorry, I did not read anywhere this was the MT4 "default Fibonacci indicator." I thought it was a custom indicator.

                        NinjaTrader is not open source and only they can modify it. You would need a custom Fib indicator to draw what you need. Good Luck,,

                        Comment


                          #13
                          Originally posted by Cronosis View Post
                          Its ok, Ive postes in Futures.io to see if someone can helo me, I appreciate your input!



                          Any luck since? I'm interested

                          Comment

                          Latest Posts

                          Collapse

                          Topics Statistics Last Post
                          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
                          0 responses
                          571 views
                          0 likes
                          Last Post Geovanny Suaza  
                          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
                          0 responses
                          331 views
                          1 like
                          Last Post Geovanny Suaza  
                          Started by Mindset, 02-09-2026, 11:44 AM
                          0 responses
                          101 views
                          0 likes
                          Last Post Mindset
                          by Mindset
                           
                          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
                          0 responses
                          549 views
                          1 like
                          Last Post Geovanny Suaza  
                          Started by RFrosty, 01-28-2026, 06:49 PM
                          0 responses
                          549 views
                          1 like
                          Last Post RFrosty
                          by RFrosty
                           
                          Working...
                          X