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 AveryFlynn, Today, 04:57 AM
    0 responses
    4 views
    0 likes
    Last Post AveryFlynn  
    Started by RubenCazorla, 08-30-2022, 06:36 AM
    3 responses
    79 views
    0 likes
    Last Post PaulMohn  
    Started by f.saeidi, Yesterday, 12:14 PM
    9 responses
    25 views
    0 likes
    Last Post f.saeidi  
    Started by Tim-c, Today, 03:54 AM
    0 responses
    3 views
    0 likes
    Last Post Tim-c
    by Tim-c
     
    Started by FrancisMorro, Today, 03:24 AM
    0 responses
    5 views
    0 likes
    Last Post FrancisMorro  
    Working...
    X