Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

instrument/interval linking color

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

    instrument/interval linking color

    Can I retrieve/get the color of the color link for a chart?

    I added my own color parameter but would be nice if I can use something that already existed.

    #2
    Hello ct,

    Thank you for your note.

    If you were to use the following code in OnBarUpdate, you will see prints for both the instrument link color as well as interval link color.

    Code:
    ChartControl.Dispatcher.InvokeAsync((Action)(() =>
    {
    
    //	Below prints the Instrument Link Color (The right colored button to left of "-""Box""X"				
    xColorInstrumentLink = Window.GetWindow(ChartControl.Parent).FindFirst("ChartInstrumentLinkControlComboBox") as System.Windows.Controls.ComboBox;		
    NinjaTrader.Gui.Tools.LinkControlItem selectedInstrumentLinkItem=xColorInstrumentLink.SelectedItem as NinjaTrader.Gui.Tools.LinkControlItem;
    Print("selectedInstrumentLinkItem " + selectedInstrumentLinkItem.Text);
    								
    //	Below prints the Interval Link Color (The left colored button to left of instrument link color next to "-""Box""X"							
    xColorIntervalLink=Window.GetWindow(ChartControl.Parent).FindFirst("ChartIntervalLinkControlComboBox") as System.Windows.Controls.ComboBox;		
    NinjaTrader.Gui.Tools.LinkControlItem selectedIntervalLinkItem=xColorIntervalLink.SelectedItem as NinjaTrader.Gui.Tools.LinkControlItem;
    Print("selectedIntervalLinkItem " + selectedIntervalLinkItem.Text);
    				
    }));
    Please let us know if you need further assistance.
    Alan P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by kinfxhk, 07-14-2026, 09:39 AM
    0 responses
    87 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 10:18 AM
    0 responses
    92 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 09:50 AM
    0 responses
    70 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 07:21 AM
    0 responses
    87 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-11-2026, 02:11 AM
    0 responses
    64 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X