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

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 selu72, Today, 02:01 PM
    1 response
    7 views
    0 likes
    Last Post NinjaTrader_Zachary  
    Started by WHICKED, Today, 02:02 PM
    2 responses
    12 views
    0 likes
    Last Post WHICKED
    by WHICKED
     
    Started by f.saeidi, Today, 12:14 PM
    8 responses
    21 views
    0 likes
    Last Post f.saeidi  
    Started by Mikey_, 03-23-2024, 05:59 PM
    3 responses
    51 views
    0 likes
    Last Post Sam2515
    by Sam2515
     
    Started by Russ Moreland, Today, 12:54 PM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_Erick  
    Working...
    X