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 rtwave, 04-12-2024, 09:30 AM
      4 responses
      29 views
      0 likes
      Last Post rtwave
      by rtwave
       
      Started by yertle, Yesterday, 08:38 AM
      7 responses
      28 views
      0 likes
      Last Post yertle
      by yertle
       
      Started by bmartz, 03-12-2024, 06:12 AM
      2 responses
      21 views
      0 likes
      Last Post bmartz
      by bmartz
       
      Started by funk10101, Today, 12:02 AM
      0 responses
      6 views
      0 likes
      Last Post funk10101  
      Started by gravdigaz6, Yesterday, 11:40 PM
      1 response
      9 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Working...
      X