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

Passing a value to an indicator

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

    Passing a value to an indicator

    Is it possible in NinjaScript to pass a value into an indicator for the indicator to use in its logic? If so, how is this done?

    #2
    Hello,

    Yes this is possible to do, an example of this would be the SMA indicator that requires a Period.

    For this, an easy example is actually to view the SMA indicators code to see how this is done.

    Please go to Tools -> Edit NinjaScript -> Indicator -> SMA

    Once the code is open, there are a few parts you need to make a parameter.

    The first place to look is the variables section, look for the line:

    Code:
    private int		period	= 14;
    This is the private variable for the period which defines its default value and is a place holder.

    Now look near the bottom in the Properties section for the following:

    Code:
    [Description("Numbers of bars used for calculations")]
    [GridCategory("Parameters")]
    public int Period
    {
    	get { return period; }
    	set { period = Math.Max(1, value); }
    }
    This is a public property which will be in the ( ) of the indicator when you call it.

    Now in the code for this indicator anywhere you need to use the period input, you would use Period

    From a strategy you would call this indicator by name or IndicatorName(13) the 13 would be a period because now this has a Period input.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by GLFX005, Today, 03:23 AM
    0 responses
    1 view
    0 likes
    Last Post GLFX005
    by GLFX005
     
    Started by XXtrader, Yesterday, 11:30 PM
    2 responses
    11 views
    0 likes
    Last Post XXtrader  
    Started by Waxavi, Today, 02:10 AM
    0 responses
    6 views
    0 likes
    Last Post Waxavi
    by Waxavi
     
    Started by TradeForge, Today, 02:09 AM
    0 responses
    14 views
    0 likes
    Last Post TradeForge  
    Started by Waxavi, Today, 02:00 AM
    0 responses
    3 views
    0 likes
    Last Post Waxavi
    by Waxavi
     
    Working...
    X