Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Market Internal - Indicator - Enable Price Markers

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

    Market Internal - Indicator - Enable Price Markers

    Hi,

    I would like to enable the price markers for the NYSE TICK value for the Market internal indicator, Can someone help how to do this?

    When i enable price markers it only show for ADD line, not the NYSE tick? How do i enable price markers?

    Thank you





    Attached Files

    #2
    Does your underlying data provider support ^ADD? Who are you connected to?

    Comment


      #3
      CGQ. it do see the price market updating live for ^Add, but for not see price market for NYSE tick.

      Comment


        #4
        I assume you mean CQG. Unfortunately CQG does not support ^ADD in NinjaTrader:





        The solution for you would either be to obtain a data feed which supplies ^ADD to NinjaTrader (like Kinetick) or to adjust the add-on to pull data from ^ADV and ^DECL (the difference between these two indices is very similar to ^ADD).

        Comment


          #5
          I also have Kinetick, same issue, this is not about the data not loading, it loads and i see real time price movement, all i am looking for is enable price marker for TICK, in this indicator that i have attached in my original post

          Here is the print screen of what i see.
          Attached Files

          Comment


            #6
            Hello kitwit,

            Thanks for reply.

            The indicator you posted does not have price markers enabled by default and when you do enable them, as you observed, you only see the price marker for the yellow line, which is based on the ^ADV data minus the ^DECL data.

            To show a price marker for the ^Tick data bars, you would need to modify the indicator. The modifications are minor in that you need only add a new plot using the new PlotStyle.PriceBox (so that it only shows a price box in the price column and no actual plot line), you would need to assign the Close value of the Tick data series to the new plot and then in region properties, add an output for the plot in regions properties.

            Example of Added plot: AddPlot(new Stroke(Brushes.Black, 2), PlotStyle.PriceBox, "NYSE");

            Example of assigning the ^Tick Close to the new plot: NYSE[0] = Close[0];

            Example of the code needed to output the plot in region properties:
            [Browsable(false), XmlIgnore]
            public Series<double> NYSE
            {
            get { return Values[1]; }
            }


            References:




            Paul H.NinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by alifarahani, Today, 09:40 AM
            6 responses
            29 views
            0 likes
            Last Post alifarahani  
            Started by Waxavi, Today, 02:10 AM
            1 response
            17 views
            0 likes
            Last Post NinjaTrader_LuisH  
            Started by Kaledus, Today, 01:29 PM
            5 responses
            13 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Started by Waxavi, Today, 02:00 AM
            1 response
            12 views
            0 likes
            Last Post NinjaTrader_LuisH  
            Started by gentlebenthebear, Today, 01:30 AM
            3 responses
            17 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Working...
            X