Curious to know how complicated it would be to modify the Fibonacci Time Extension tool. What I would like to do is remove the anchor, change the values of precentages to time and add a calendar so I could move the indicator by date.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Fibonnaci Time Extension Modification/ New indicator idea
Collapse
X
-
Fibonnaci Time Extension Modification/ New indicator idea
Hi,
Curious to know how complicated it would be to modify the Fibonacci Time Extension tool. What I would like to do is remove the anchor, change the values of precentages to time and add a calendar so I could move the indicator by date.Tags: None
-
Hello pthomas,
Thanks for opening the thread.
The Fibonacci Drawing Tools are open source and documentation for Drawing Tools also exists in our help guide.
From the sound of it, you want to make an indicator based on this drawing tool and make it work with a user defined date. The major task would be implementing the OnRender() code from the DrawingTool to the indicator.
Once the code is re-implemented, it can be modified to use the a user defined Date as input. You can also use a DateTimeConverter to make a more intuitive input.
The code for displaying the price level values as percents is in GetPriceString() at line 113 in the FibonacciTools Drawing Tool source code.Code:[NinjaScriptProperty] [Gui.PropertyEditor("NinjaTrader.Gui.Tools.DateTimeConverter")] [Display(Name="Start Date", Order=1, GroupName="Parameters")] public DateTime StartDate { get; set; }
I'll include links from our publicly available documentation on Drawing Tools and custom rendering for further direction.
Drawing Tools - https://ninjatrader.com/support/help...wing_tools.htm
SharpDX for Custom Rendering - https://ninjatrader.com/support/help..._rendering.htm
Please let me know if you have any questions.Last edited by NinjaTrader_Jim; 01-15-2018, 08:51 AM.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
648 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 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
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
574 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment