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 Mindset, Today, 06:46 AM
    0 responses
    8 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, Yesterday, 05:21 PM
    0 responses
    12 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    15 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    82 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    47 views
    0 likes
    Last Post PaulMohn  
    Working...
    X