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

Event trigger on Data Series Visual change

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

    Event trigger on Data Series Visual change

    Is there an event trigger to detect when a user changes a visual property of a Data Series? (like the "Center price on scale" for example) It appears that when those visual properties are changed it does not trigger OnStateChange()
    Last edited by martyn73; 02-28-2019, 04:45 PM.

    #2
    Hello martyn73,
    Thanks for your post.

    You would need to create your own logic to check if "Center on price scale"(or any other data series property) has been changed. You can use ChartBars.Properties.CenterPriceOnScale to access that property.

    Josh G.NinjaTrader Customer Service

    Comment


      #3
      Yes, that's what I'm doing. I have added a custom checkbox on the chart trader panel to set this property value. But when you change the value from the data series window the OnStateChange does not trigger so I can't update my custom checkbox right away.

      Right now I have added the code below in the OnRender method which still can cause a delay of the checkbox updating. And it's probably not the best place to put this logic either.

      if(ChartBars != null)
      {
      if (ChartBars.Properties.CenterPriceOnScale)
      {
      if(this.cbCenter != null)
      if (this.cbCenter.IsChecked == false)
      this.cbCenter.IsChecked = true;
      }
      else
      {
      if (this.cbCenter != null)
      if (this.cbCenter.IsChecked == true)
      this.cbCenter.IsChecked = false;
      }
      }

      Is there anything else I can monitor when visual properties in the data series windows are updated?



      Comment


        #4
        martyn73,

        Nothing I can think of at the moment. I will keep looking into this though.
        Josh G.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by timmbbo, Today, 08:59 AM
        1 response
        2 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by KennyK, 05-29-2017, 02:02 AM
        2 responses
        1,280 views
        0 likes
        Last Post marcus2300  
        Started by fernandobr, Today, 09:11 AM
        0 responses
        2 views
        0 likes
        Last Post fernandobr  
        Started by itrader46, Today, 09:04 AM
        1 response
        6 views
        0 likes
        Last Post NinjaTrader_Clayton  
        Started by bmartz, 03-12-2024, 06:12 AM
        5 responses
        33 views
        0 likes
        Last Post NinjaTrader_Zachary  
        Working...
        X