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 NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    87 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    151 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    79 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    53 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    62 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X