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 jaybedreamin, Today, 05:56 PM
    0 responses
    3 views
    0 likes
    Last Post jaybedreamin  
    Started by DJ888, 04-16-2024, 06:09 PM
    6 responses
    18 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by Jon17, Today, 04:33 PM
    0 responses
    1 view
    0 likes
    Last Post Jon17
    by Jon17
     
    Started by Javierw.ok, Today, 04:12 PM
    0 responses
    6 views
    0 likes
    Last Post Javierw.ok  
    Started by timmbbo, Today, 08:59 AM
    2 responses
    10 views
    0 likes
    Last Post bltdavid  
    Working...
    X