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

changing the input series

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

    changing the input series

    I am using an indicator with another indicator as the input series, instead of an index like the ES. I want to make this into an indicator but I cannot find anything about changing the input series to another indicator. Thanks

    #2
    Hello,

    Thank you for the post.

    All indicators have an overload in which you can supply an input series to the indicator. Can you tell me, are you currently doing this in the chart and asking how to do this with Syntax instead?

    If so, one example would be the following:

    Code:
    double sma = SMA(EMA(12), 14)[0];
    In this case, the EMA 12 is being passed as the input series for the SMA 14.


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

    Comment


      #3
      Thanks, Jesse. That is what I was looking for. While I have you here.....I have an indicator that paints the bar when an MA is rising or falling. I want to add another MA to the indicator, so it only paints the bar if both MA is rising or falling. How would add the second MA? Thanks

      Comment


        #4
        Hello,

        Thank you for the reply.

        This would largely depend on your current logic, but if you were using the Rising and Falling methods, you would just append another condition to your existing condition with the && operator.

        Code:
        if(Rising(SMA(12)) && Rising(EMA(12)))

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

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by GwFutures1988, Today, 02:48 PM
        0 responses
        2 views
        0 likes
        Last Post GwFutures1988  
        Started by mmenigma, Today, 02:22 PM
        1 response
        3 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by frankthearm, Today, 09:08 AM
        9 responses
        35 views
        0 likes
        Last Post NinjaTrader_Clayton  
        Started by NRITV, Today, 01:15 PM
        2 responses
        9 views
        0 likes
        Last Post NRITV
        by NRITV
         
        Started by maybeimnotrader, Yesterday, 05:46 PM
        5 responses
        28 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Working...
        X