Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Getting the ChartTrader Account from code

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

    Getting the ChartTrader Account from code

    I'm making an addon for chart trader. And I need to know the account that's selected. I've got the chart trader reference, and its got an Account property so that's fine.

    However I need to know if the account is changed, is there any way to hook into the Account dropdown box? Or another way to determine if the account is changed?

    Thanks

    Kevin

    #2
    Managed to figure this out:

    Code:
    var chartTrader Window.GetWindow(chart.ActiveChartControl.Parent).FindFirst("ChartWindowChartTraderControl") as Gui.Chart.ChartTrader;
    if (ChartTrader == null) return null;
    var accountSelector = ChartTrader.FindFirst("ChartTraderControlAccountSelector") as AccountSelector;
    From there, it has a selection ChangedEvent that can be bound to.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    72 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    44 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    25 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    30 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    61 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X