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

    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.

    #2
    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();
    }

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by arvidvanstaey, Yesterday, 02:19 PM
    5 responses
    14 views
    0 likes
    Last Post NinjaTrader_Zachary  
    Started by Rapine Heihei, Yesterday, 08:25 PM
    1 response
    12 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by Mongo, Yesterday, 11:05 AM
    6 responses
    27 views
    0 likes
    Last Post Mongo
    by Mongo
     
    Started by ct, 05-07-2023, 12:31 PM
    7 responses
    207 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Started by wzgy0920, Yesterday, 09:53 PM
    1 response
    13 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Working...
    X