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!!!
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Fibonacci text plot
Collapse
X
-
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!!!Tags: None
-
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
-
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:Originally posted by Cronosis View PostHello, 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!!!
Cheers!Code:Draw.FibonacciRetracements(NinjaScriptBase owner, string tag, bool isAutoScale, int startBarsAgo, double startY, int endBarsAgo, double endY, bool isGlobal, string templateName)
Last edited by aligator; 01-31-2021, 07:54 PM.
Comment
-
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:
Cheers!Code:Draw.FibonacciRetracements(NinjaScriptBase owner, string tag, bool isAutoScale, int startBarsAgo, double startY, int endBarsAgo, double endY, bool isGlobal, string templateName)
Comment
-
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..Originally posted by Cronosis View PostThank 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.
Comment
-
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
- Likes 1
Comment
-
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.Originally posted by Cronosis View PostI 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 retracement
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
-
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
-
Sorry, I did not read anywhere this was the MT4 "default Fibonacci indicator." I thought it was a custom indicator.Originally posted by Cronosis View PostAligator, 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".
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
-
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
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
576 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment