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

How to Read Control Center Order Colors?

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

    How to Read Control Center Order Colors?

    Hello!

    Is there an easy way to read the various order type colors from the Control Center?
    I'm trying to dynamically update some colors in my indicator to match the color of the associated order type.

    (The attached screenshot shows the colors to which I'm referring.)

    I've been searching everywhere and can't seem to find these readily available.

    Thoughts?

    #2
    Hello MarkWise,

    Thanks for your message.

    We don't offer any documented/supported way to fetch properties of the Orders tab or the Control Center through NinjaScript.

    I will leave this thread open for any community member's input on accomplishing this task.

    If you have any other questions, please don't hesitate to open a new thread.
    JimNinjaTrader Customer Service

    Comment


      #3
      Thanks for the info Jim.

      I was able to get what I needed by pulling values from the Chart Trader as shown in the code below. Hopefully others might find this helpful.


      Code:
      
      Chart chartWindow = System.Windows.Window.GetWindow(owner.ChartControl.Parent) as NinjaTrader.Gui.Chart.Chart;
      if (chartWindow != null)
      {
       ChartTrader chartTrader = Window.GetWindow(chartWindow.ActiveChartControl.Parent).FindFirst("ChartWindowChartTraderControl") as NinjaTrader.Gui.Chart.ChartTrader;
       if (chartTrader != null)
       {
      
        StopOrderLineBoxBrush = (SolidColorBrush)chartTrader.Properties.StopLoss.Brush;
      
        TargetOrderLineBoxBrush = (SolidColorBrush)chartTrader.Properties.ProfitTarget.Brush;
      
      
       }
      }

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Fran888, 02-16-2024, 10:48 AM
      3 responses
      43 views
      0 likes
      Last Post Sam2515
      by Sam2515
       
      Started by martin70, 03-24-2023, 04:58 AM
      15 responses
      114 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by The_Sec, Today, 02:29 PM
      1 response
      7 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by jeronymite, 04-12-2024, 04:26 PM
      2 responses
      31 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by Mindset, 05-06-2023, 09:03 PM
      10 responses
      265 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Working...
      X