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

Drawing on MACD indicator panel from strategry

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

    Drawing on MACD indicator panel from strategry

    I have been trying various things and searching the forums etc for a method to draw lines etc on a MACD indicator panel from a strategy.

    I see references to setting DrawOnPricePanel to false but this doesn't seem to be recognised in a strategy, only in a custom indicator. I can draw on the main price panel ok, but just don't know how to draw lines etc on a inbuilt indicator displayed by my strategy.

    My code is something like;


    Code:
        public class myStrategy : Strategy
        {
            private IndicatorBase seriesMACD;
            protected override void Initialize()
            {
                seriesMACD = MACD(macdFastPeriod,macdSlowPeriod,macdSmoothing);
                Add(seriesMACD);
                
                CalculateOnBarClose = true;
            }
    
            protected override void OnBarUpdate()
            {
    // how to make this (or any other Draw method) appear over the MACD panel instead of price panel?
                DrawArrowDown(CurrentBar.ToString(), 0, 0, Color.Yellow);
            }
        }
    Any clues anyone?

    #2
    Hello Robonut,

    Thank you for your post.

    Unfortunately, there is not a method to draw in a 2nd panel when using a strategy.

    You will need to develop and indicator which draws on this panel by setting the initialize method to DrawOnPricePanel = false.

    Please let me know if you have additional questions.
    MatthewNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by skorpn, Today, 01:28 AM
    0 responses
    5 views
    0 likes
    Last Post skorpn
    by skorpn
     
    Started by ETFVoyageur, Today, 12:52 AM
    0 responses
    6 views
    0 likes
    Last Post ETFVoyageur  
    Started by Board game geek, Yesterday, 02:20 AM
    2 responses
    21 views
    0 likes
    Last Post Board game geek  
    Started by jackiegils, Yesterday, 11:05 PM
    0 responses
    7 views
    0 likes
    Last Post jackiegils  
    Started by cre8able, 05-09-2024, 09:15 PM
    2 responses
    17 views
    0 likes
    Last Post cre8able  
    Working...
    X