Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Question about one trategy applied to multiple instruments

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

    Question about one trategy applied to multiple instruments

    When we apply a developed strategy to an Instrument, I configure from Control Center where select individual instrument. Can we select multiple instrument here?

    From the section describing multiple frame or instrument, there is an example to add a multiple instrument by using add() function. Is the hard-coded instrument the only way to apply one strategy to multiple instruments?

    protected override void Initialize()
    {
    Add(PeriodType.Minute, 3);
    Add("AAPL", PeriodType.Minute, 1);
    }

    #2
    appleseed, the strategy would always have one primary series, for a multi series script you would then need to add in another series like shown with the Add() method and allow for example the selection of the instrument as string type user input.

    Another option is to start a strategy on a instrument list from the strategies tab, however this will create an individual strategy instance for each symbol (so no MultiSeries script).

    Comment


      #3
      Thanks for clarification.
      If I use your suggested method to "start a strategy on a instrument list from the strategies tab", each individual running strategy won't communicate between them. For instance, order filled info from strategy A won't pass to strategy B, correct? But at least all strategies will share account size (available fund) info, right?

      Comment


        #4
        Correct, there would be no strategy communication between the instances then.

        If you scripts run on the same account, then they would share the GetAccountsValues from it, yes.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        605 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        351 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        105 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        560 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        561 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X