Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Working with multiple data series Minute and Tick

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

    Working with multiple data series Minute and Tick

    Hello,

    Some information on my strategy:
    - instrument = S&P e-mini
    - Calculate = OnBarClose
    - primary data series = 30 minute
    - secondary data series = 1 tick
    - profit target = 4 ticks
    - the strategy only works between to hours of 8:30 AM to 9:00 AM (30minutes)

    The strategy is supposed to capture the open price of the initial bar (Open[0]) and should take profit 4 ticks away. For backtests purposes, obviously the only values known to the computer is the OHLC so it wont capture intrabar granularity.

    Is it possible to write a line of code like this while using two data series:
    ------------------------------------------------------------------
    if ((Close[1] >= (Open[0] + (4 * TickSize))))

    EnterLong(Convert.ToInt32(OrderQuantity), "LSEntry");
    ------------------------------------------------------------------

    Also, in the beginning of OnBarUpdate, I have these lines written:
    ------------------------------------------------------------------

    if (BarsInProgress != 0)
    return;

    if (CurrentBars[0] < 1
    || CurrentBars[1] < 0)
    return;

    ------------------------------------------------------------------

    How can I change these to allow the script to run multiple data series?

    #2
    Hi, thanks for posting. Strategies can add extra data series with the AddDataSeries method. We have a full guide on multi time frame and instrument scripts here:



    There are also two full examples in the platform that come default called SampleMultiInstrument and SampleMultiTimeFrame.

    Kind regards,
    -ChrisL

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    47 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    23 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    33 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Working...
    X