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

Display Message On Chart When Bar Type Properties Set Incorrectly

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

    Display Message On Chart When Bar Type Properties Set Incorrectly

    I have created a custom bar type and want to display a text message on the chart (instead of the bars) when the properties for the bar type are set incorrectly. I tried to do this with Draw.TextFixed, but that method is not available in BarTypes namespace. Any ideas on how I might go about doing this?
    The Trading Mantis
    NinjaTrader Ecosystem Vendor - The Trading Mantis

    #2
    Hello gregschr,

    I'm not certain this would be possible from a bar type.

    You could send a log message with an alert.

    To render text on the chart this would need to be done with a ChartStyle script in OnRender.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Thanks Chelsea! Using a ChartStyle makes sense.

      If I created a custom ChartStyle for the custom BarType, is there a way to set the custom ChartStyle as a default for the BarType? I know this can be done manually from the Data Series window by saving a preset. Is it also possible to do it in the code for the BarType?
      The Trading Mantis
      NinjaTrader Ecosystem Vendor - The Trading Mantis

      Comment


        #4
        Any thoughts on the followup question in my last post?
        The Trading Mantis
        NinjaTrader Ecosystem Vendor - The Trading Mantis

        Comment


          #5
          Hello gregschr,

          So the bar type would need to use an existing property as its own with SetPropertyName(). SetPropertyName() works for bar types as well and I've noted to our development to add this to the Bars Type section of the help guide.



          In the BarType file set DefaultChartStyle to your chart style script.
          DefaultChartStyle = (ChartStyleType) 80;

          Once the property is set, in the Chart Style's OnRender you have access to the Bars object.



          Then access the property from the bar object -> BarsPeriod.

          Print(chartBars.Bars.BarsPeriod.Value);

          And draw this using SharpDX.Direct2D1.RenderTarget.DrawText().
          Chelsea B.NinjaTrader Customer Service

          Comment


            #6
            Thanks Chelsea!

            That was exactly what I needed.

            I appreciate the detailed instructions and your help!
            The Trading Mantis
            NinjaTrader Ecosystem Vendor - The Trading Mantis

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by PhillT, Today, 02:16 PM
            2 responses
            3 views
            0 likes
            Last Post PhillT
            by PhillT
             
            Started by Kaledus, Today, 01:29 PM
            3 responses
            9 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Started by frankthearm, Yesterday, 09:08 AM
            14 responses
            47 views
            0 likes
            Last Post NinjaTrader_Clayton  
            Started by gentlebenthebear, Today, 01:30 AM
            2 responses
            14 views
            0 likes
            Last Post gentlebenthebear  
            Started by PaulMohn, Today, 12:36 PM
            2 responses
            17 views
            0 likes
            Last Post PaulMohn  
            Working...
            X