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

I need help

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

    I need help


    Hi there!
    I would like to know how to move a donchian channel average with code in ninjatrader 8
    DonchianChannel (Close, 52) [26]
    This doesn't work for me and I'm lost
    Thank you

    #2
    Hello vasgoo,

    Welcome to the forums!

    If you are trying to visually move the indicator plot that is added to a strategy, this would have to be done from the strategy itself and changing the Displacement property. Change the BarsAgo value (I.E. DonchianChannel (Close, 52) [26]) would change which bar you want to reference, it would not change the indicator visually.

    For example:

    Code:
            protected override void OnStateChange()
            {
                if (State == State.SetDefaults)
                {
                    Description                                    = @"Enter the description for your new custom Strategy here.";
                    Name                                        = "MyCustomStrategy1";
                    Calculate                                    = Calculate.OnBarClose;
                    Displacement = 26;
                }
                else if (State == State.DataLoaded)
                {                
                    DonchianChannel1                = DonchianChannel(Close, 14);
                    DonchianChannel1.Plots[0].Brush = Brushes.Goldenrod;
                    DonchianChannel1.Plots[1].Brush = Brushes.DodgerBlue;
                    DonchianChannel1.Plots[2].Brush = Brushes.DodgerBlue;
                    AddChartIndicator(DonchianChannel1);
                }
            }
    Displacement - https://ninjatrader.com/support/help...splacement.htm

    Working with Price Series - https://ninjatrader.com/support/help...ice_series.htm

    Please let me know if I can be of further assistance.
    JimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DayTradingDEMON, Today, 09:28 AM
    1 response
    12 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by cmtjoancolmenero, Yesterday, 03:58 PM
    8 responses
    31 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by helpwanted, Today, 03:06 AM
    2 responses
    22 views
    0 likes
    Last Post NinjaTrader_LuisH  
    Started by navyguy06, Today, 09:28 AM
    0 responses
    5 views
    0 likes
    Last Post navyguy06  
    Started by rjbtrade1, 11-30-2023, 04:38 PM
    2 responses
    77 views
    0 likes
    Last Post DavidHP
    by DavidHP
     
    Working...
    X