Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

NT8 Strategy and Indicator Difference

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

    NT8 Strategy and Indicator Difference

    what's the difference between strategies and indicators?

    I was planning to use an indicator that plots a series only when a strategy has a position but not sure how to do this? The strategy also uses the indicator for entry/exit decisions.

    am I right that strategies don't have series like indicators?

    Note: NT8 is fantastic!
    Last edited by delTik; 04-27-2016, 02:33 AM.

    #2
    Hello delTik,

    Thank you for your post.

    In NinjaTrader 8 you can plot from a strategy. For information on this please visit the following link: http://ninjatrader.com/support/helpG...tegy_plots.htm

    So you could have a strategy calculate the values for the plot and then check that series values for your conditions. You can also change the plot colors to Transparent to "hide" the plot from the chart when not in a position.

    For example:
    Code:
    		protected override void OnStateChange()
    		{
    			if (State == State.SetDefaults)
    			{
    				Description									= @"Enter the description for your new custom Strategy here.";
    				Name										= "Example1505868";
    				Calculate									= Calculate.OnBarClose;
    				EntriesPerDirection							= 1;
    				EntryHandling								= EntryHandling.AllEntries;
    				AddPlot(Brushes.Orange, "Example");
    			}
    		}
    
    		protected override void OnBarUpdate()
    		{
    			Values[0][0] = Close[0]; // your plot values here
    			
    			if (Position.MarketPosition == MarketPosition.Flat)
    				Plots[0].Brush = Brushes.Transparent;
    			else
    				Plots[0].Brush = Brushes.Orange;
    			
    			if (Values[0][0] > Open[0])
    				EnterLong();
    			else if (Values[0][0] < Open[0])
    				ExitLong();
    		}

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    668 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    377 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    110 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    575 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    580 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X