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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    90 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    137 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    120 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    69 views
    0 likes
    Last Post PaulMohn  
    Working...
    X