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 rtwave, 04-12-2024, 09:30 AM
    2 responses
    20 views
    0 likes
    Last Post rtwave
    by rtwave
     
    Started by tsantospinto, 04-12-2024, 07:04 PM
    5 responses
    68 views
    0 likes
    Last Post tsantospinto  
    Started by cre8able, Today, 03:20 PM
    0 responses
    7 views
    0 likes
    Last Post cre8able  
    Started by Fran888, 02-16-2024, 10:48 AM
    3 responses
    49 views
    0 likes
    Last Post Sam2515
    by Sam2515
     
    Started by martin70, 03-24-2023, 04:58 AM
    15 responses
    115 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X