Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Viewing indicator in Strategy Analyzer > Executions > Charts

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

    Viewing indicator in Strategy Analyzer > Executions > Charts

    Hi.

    I've been using Ninjatrader 7 until a cuple of weeks ago. One of the things I used most was viewing strategy behaviour in the Strategy Analyzer > Executions > Chart.

    In NT7 I could see the indicators I add in the strategy but I can't in NT 8, only accessing directly the Chart.

    ¿Should I see them or they don't work in NT8?

    Thank you.

    #2
    Hello deltaleonis,

    I will need to confirm with product management if this is expected or not, I do not see the indicators being plotted in this chart specifically. I do see them plotted if you instead go to Strategy Analyzer > Chart.

    I will confirm this and reply back here once I have, in the case this should also show the indicators on this chart I will submit a bug report.

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

    Comment


      #3
      Hi, I had some struggle in NT8 in order to show my indicators in the strategy analyzer chart. I hope this helps

      Code:
      public class MyStrategy : Strategy
      {
        private EMA EMA_F;
      
        protected override void OnStateChange()
        {
           if (State == State.Configure)
           {
              EMA_F = EMA(F); //being F a Strategy parameter
              EMA_F.Plots[0].Brush = new SolidColorBrush(Colors.Cyan);
              AddChartIndicator(EMA_F);
           }
        }
      }

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by hazylizard, Today, 08:38 AM
      0 responses
      4 views
      0 likes
      Last Post hazylizard  
      Started by Max238, Today, 01:28 AM
      5 responses
      42 views
      0 likes
      Last Post Max238
      by Max238
       
      Started by giulyko00, Yesterday, 12:03 PM
      3 responses
      12 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by habeebft, Today, 07:27 AM
      1 response
      14 views
      0 likes
      Last Post NinjaTrader_ChristopherS  
      Started by AveryFlynn, Today, 04:57 AM
      1 response
      13 views
      0 likes
      Last Post NinjaTrader_Erick  
      Working...
      X