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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    46 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    22 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    14 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    21 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    23 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X