Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Most efficient way to trigger chart update from a second instrument's price change.

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

    Most efficient way to trigger chart update from a second instrument's price change.

    I've written a strategy that uses a second instrument to calculate the location of a line drawn on the bar chart of the first (primary) instrument.

    The problem is, I want that line's location to update whenever the second instrument's price changes but as the code is currently written the screen does not update till the first instrument's price changes.

    What is the most efficient way to force the chart to update and show the new location of the line whenever the second instrument's price changes. In other words how can I use the event of the second instrument's price change to repaint the chart? Here is the relevant parts of my code:

    protected override void Initialize()
    {
    CalculateOnBarClose = false;
    Add(Instrument.FullName, PeriodType.Minute, 1); //This will be Bars index 1
    FFirstMarketIndex = 1;
    Add(SecondMarketSymbol, PeriodType.Minute, 1); //This will be Bars index 2
    FSecondMarketIndex = 2;
    }

    protected override void OnBarUpdate()
    {
    if(BarsInProgress == FSecondMarketIndex)
    {
    DrawRay();
    }

    #2
    You will want to work from the BarsInProgress == 2 context which you already are. With your current code you are repainting the chart based off of a price change from your SecondMarketSymbol instrument.
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    56 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    143 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    160 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    96 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    276 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X