Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

user defined input parameters in an AddOn

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

    user defined input parameters in an AddOn

    Hi,

    Is it possible to have user defined input paremeters within an AddOn?

    Using the sample AddOn code I have tried to add a parameter to:

    Code:
    protected override void OnStateChange()
            {
                if (State == State.SetDefaults)
                {
                  Description = "Example AddOn demonstrating some of the framework's capabilities";
    	      Name        = "AddOn Framework";
    	      Round					= false;
                }
            }
    and to properties:

    Code:
    #region Properties
            [NinjaScriptProperty]
            [Display(Name = "Round", Description = "Round", Order = 1, GroupName = "Parameters")]
            public bool Round
            { get; set; }
    #endregion
    However I am not able to get the properties/property grid to appear from context menu when right clicking tab/window.

    #2
    Hello michaeldim,

    It is possible to add public properties to an Addon, however, an addon window will have the contents you design. There is not a premade property grid window (such as the Indicators window or Strategies or Properties windows on charts) for addons.

    It is possible to add one to your script.

    Attached is an example of a property grid from a custom class.

    As values are changed these actively change the values of the class.
    If you wanted an OK and Cancel button, you'd need to make a copy class and change the values in the copy, and then when clicking ok, set the original values to copy values.
    Attached Files
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Hello,

      This example addon requires a reference to:
      Code:
      *ProgramFiles*\NinjaTrader 8\bin64\System.Windows.Controls.WpfPropertyGrid.dll
      I've re-exported with added reference to this in the AdditionalReferences.txt file to allow the reference to be added automatically when importing.
      Attached Files
      Last edited by NinjaTrader_ChelseaB; 11-22-2016, 10:27 AM.
      Chelsea B.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Aviram Y, Today, 05:29 AM
      0 responses
      3 views
      0 likes
      Last Post Aviram Y  
      Started by quantismo, 04-17-2024, 05:13 PM
      3 responses
      27 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by ScottWalsh, 04-16-2024, 04:29 PM
      7 responses
      35 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by cls71, Today, 04:45 AM
      0 responses
      6 views
      0 likes
      Last Post cls71
      by cls71
       
      Started by mjairg, 07-20-2023, 11:57 PM
      3 responses
      218 views
      1 like
      Last Post PaulMohn  
      Working...
      X