Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Plot executions

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

    Plot executions

    Hello,

    In "Data Series" there is a "Plot executions" option that allows you to "do not plot".
    This option can be disabled with control+E.
    Is there an instruction in ninjascript to disable it within an indicator?

    Thank you

    Regards

    #2
    Hello anmir5,

    Thank you for your post.

    I am not aware of a supported way to disable this setting via code.

    This thread will remain open for anyone who has an unsupported/undocumented solution.

    Comment


      #3
      This gives you the core code that you require.
      Code:
              #region toggle Executions Text & Marker State
              private void TextAndMarkerStateChange()
              {
                  if(ShowTextAndMarker == true )// 3 potential states so I use this concept to go 2 and 1
                  {
               
                  if(    String.Compare(ShowExecState,"EXECUTION MARKERS ONLY") == 0 )
                      {
                      ShowExecState = "FULL TEXT EXECUTION MARKERS";
                          
                      
      ChartBars.Properties.PlotExecutions = ChartExecutionStyle.TextAndMarker;
                 
                      ShowTextAndMarker = false;   
                      }
                  
                  if(String.Compare(ShowExecState,"NO EXECUTION MARKERS") == 0 )
                      {
                      ShowExecState = "EXECUTION MARKERS ONLY";
                    ChartBars.Properties.PlotExecutions = ChartExecutionStyle.MarkersOnly;
      
                      }    
                  }
                  else
                      {
                      ShowTextAndMarker = true;
                   ChartBars.Properties.PlotExecutions = ChartExecutionStyle.DoNotPlot;
                      ShowExecState = "NO EXECUTION MARKERS";
                  
                          
                      }
      
                      
              }    
              
          
              #endregion​​

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      84 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      143 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      83 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      256 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      334 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X