Announcement

Collapse
No announcement yet.

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.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    88 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    134 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    118 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    67 views
    0 likes
    Last Post PaulMohn  
    Working...
    X