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

Can a strategy name and parameter settings be removed in a chart's upper left corner?

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

    Can a strategy name and parameter settings be removed in a chart's upper left corner?

    Hello,

    By erasing an indicator's label in the indicator's setting the name and settings of that indicator do not display in the chart's upper left corner. Is there a way to do this for a loaded strategy too? I am trying to prevent the strategy's name and parameter settings from displaying on the chart as well.

    Thank you for any help

    #2
    Hello 9817_dynamic,

    Thank you for the post.

    Strategies also have a Label property which can be set to a blank string the same as the indicators would have.

    This only sets the strategies label though, it will still show the indicator labels if it uses AddChartIndicator. If you also want to control added indicators you would need to do that in the strategies code. A simple example would be if we take a look at the SampleMACrossOver:

    Code:
    else if (State == State.DataLoaded)
    {
       smaFast = SMA(Fast);
       smaSlow = SMA(Slow);
    [B]   smaFast.Name = "";
       smaSlow.Name = ""[/B];
    
    
       AddChartIndicator(smaFast);
       AddChartIndicator(smaSlow);

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Sweet. Thank you!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by FAQtrader, Today, 03:35 PM
      0 responses
      1 view
      0 likes
      Last Post FAQtrader  
      Started by rocketman7, Today, 09:41 AM
      5 responses
      16 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by frslvr, 04-11-2024, 07:26 AM
      9 responses
      124 views
      1 like
      Last Post caryc123  
      Started by selu72, Today, 02:01 PM
      1 response
      10 views
      0 likes
      Last Post NinjaTrader_Zachary  
      Started by WHICKED, Today, 02:02 PM
      2 responses
      19 views
      0 likes
      Last Post WHICKED
      by WHICKED
       
      Working...
      X