Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Possible to set a strategy's Primary Data series via code?

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

  • NinjaTrader_PatrickH
    replied
    Hello Matheyas5,

    Thank you for your post.

    There is no means to set the primary series (chart series) through NinjaScript code. Although you could use SendKeys to send keys to the chart to change the primary bar series. Other than that you could put a check in your code and display a message using DrawTextFixed that advises that the incorrect bar type and value is in use.

    For SendKeys, here is an unsupported example:
    Code:
    // check that the bars are Renko and that they are not at the desired 6 value
    if(BarsPeriod.Id == PeriodType.Renko && BarsPeriod.Value != 6)
    {
    // if so, invoke the ninjatrader mini instrument selector which will change the period to the 6RE (6 Renko)
    MiniInstrumentSelector MIS = new MiniInstrumentSelector(ChartControl, "6RE");
    System.Windows.Forms.SendKeys.Send("{ENTER}");
    MIS.ShowDialog();
    }

    Leave a comment:


  • Possible to set a strategy's Primary Data series via code?

    Hello NT,

    Is it possible to set a strategy's Primary Data series via code?

    For example, I'd like to code my strategy so it knows to always use 1 Minute Last bars as the primary data series (aka BarsInProgress ==0).

    Thanks.

Latest Posts

Collapse

Topics Statistics Last Post
Started by GussJ, 03-04-2020, 03:11 PM
11 responses
3,228 views
0 likes
Last Post xiinteractive  
Started by andrewtrades, Today, 04:57 PM
1 response
13 views
0 likes
Last Post NinjaTrader_Manfred  
Started by chbruno, Today, 04:10 PM
0 responses
7 views
0 likes
Last Post chbruno
by chbruno
 
Started by josh18955, 03-25-2023, 11:16 AM
6 responses
440 views
0 likes
Last Post Delerium  
Started by FAQtrader, Today, 03:35 PM
0 responses
12 views
0 likes
Last Post FAQtrader  
Working...
X