Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How do I get price data into my indicator?

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

    How do I get price data into my indicator?

    Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.ComponentModel.DataAnnotations;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Xml.Serialization;
    using NinjaTrader.Cbi;
    using NinjaTrader.Gui;
    using NinjaTrader.Gui.Chart;
    using NinjaTrader.Gui.SuperDom;
    using NinjaTrader.Data;
    using NinjaTrader.NinjaScript;
    using NinjaTrader.Core.FloatingPoint;
    using NinjaTrader.NinjaScript.DrawingTools;
    These are my declarations.
    How am I able to access price data in my indicator?
    Example: close, bid, ask, median, etc

    #2
    Hello ezrollin,

    Thank you for your post.

    When an indicator is applied to a chart, the data series of that chart is automatically subscribed to as the primary series for the indicator. Price data for that series can be accessed by using the various price series:

    https://ninjatrader.com/support/help...indicators.htm

    https://ninjatrader.com/support/help...ice_series.htm

    Please let us know if we may be of further assistance to you.

    Comment


      #3
      I'm not able to compile. I'm getting a "The name "close" does not exist in the current context"

      Comment


        #4
        Hello ezrollin,

        Thank you for your reply.

        If you're not capitalizing the C in Close that's an issue - these are case sensitive. You'll also need a bar index to access the close price of specific bars. Close[0] would return the close price of the current bar.

        Please let us know if we may be of further assistance to you.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        580 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        335 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        554 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        552 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X