Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Start Date of a Strategy?

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

    Start Date of a Strategy?

    If I run my strategy, it starts "in between" but which date is chosen as the start date by default and how can I adjust this date?

    Is it the maximum bars lookback? Or the minimum bars required to trade?

    #2
    Hello pmmkm,

    Thanks for your post.

    Unless you have otherwise instructed the strategy through coding, the strategy will process historical bars starting at the very first bar of the historical data set as defined by the data series "days (or bars) to load". To clarify, if you have a data series of 5 days to load then the strategy will begin processing the data from 5 days ago.

    In terms of when it places its first trade, the parameter "Bars required to trade" will prevent entries until that number of bars has been processed by the strategy.

    If you do not wish the strategy to place historical trades you can add the following statement at the top of the OnBarUpdate():

    if (State != State.Realtime) return; // Only process on real time data.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, Today, 05:17 AM
    0 responses
    53 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    130 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    70 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    44 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    49 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X