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 arvidvanstaey, Today, 02:19 PM
    4 responses
    11 views
    0 likes
    Last Post arvidvanstaey  
    Started by samish18, 04-17-2024, 08:57 AM
    16 responses
    61 views
    0 likes
    Last Post samish18  
    Started by jordanq2, Today, 03:10 PM
    2 responses
    9 views
    0 likes
    Last Post jordanq2  
    Started by traderqz, Today, 12:06 AM
    10 responses
    18 views
    0 likes
    Last Post traderqz  
    Started by algospoke, 04-17-2024, 06:40 PM
    5 responses
    48 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X