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

Fibonnaci Time Extension Modification/ New indicator idea

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

    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.

    #2
    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.
    Code:
    [NinjaScriptProperty]
    [Gui.PropertyEditor("NinjaTrader.Gui.Tools.DateTimeConverter")]
    [Display(Name="Start Date", Order=1, GroupName="Parameters")]
    public DateTime StartDate
    { get; set; }
    The code for displaying the price level values as percents is in GetPriceString() at line 113 in the FibonacciTools Drawing Tool source code.

    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.
    JimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Touch-Ups, Today, 10:36 AM
    0 responses
    2 views
    0 likes
    Last Post Touch-Ups  
    Started by geddyisodin, 04-25-2024, 05:20 AM
    8 responses
    61 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by jxs_xrj, 01-12-2020, 09:49 AM
    4 responses
    3,289 views
    1 like
    Last Post jgualdronc  
    Started by Option Whisperer, Today, 09:55 AM
    0 responses
    5 views
    0 likes
    Last Post Option Whisperer  
    Started by halgo_boulder, 04-20-2024, 08:44 AM
    2 responses
    22 views
    0 likes
    Last Post halgo_boulder  
    Working...
    X