Announcement

Collapse
No announcement yet.

Offset Series in EFS2

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

  • Offset Series in EFS2

    Is it possible to declare a series, already offset by a number of bars [like EFS1 allowed], or we have to declare the straight series and retrieve it offset?

    How does that work for external time intervals? The offset will be relative to base interval [chart bars] , or the external interval?

    Thank you.
    Mihai Buta

  • #2
    Mihai
    It is possible to directly offset a study when declaring it by using offsetSeries(). For the syntax see Series Functions in the Help file of the Formula Editor or in the EFS2 Functions in the EFS KnowledgeBase
    The offset is relative to the external interval only when used in an external function/efs to which you are passing a sym/inv series as the last parameter otherwise it is relative to the base interval
    Alex

    Comment


    • #3
      Thank Alex.

      So the original declaration should be something like:

      myOffsetedMA = offsetSeries(MyMAStudy, offset);

      Thanks,
      Mihai
      Mihai Buta

      Comment


      • #4
        Mihai
        That is correct. You can use the variable (which actually is the series object) or declare the study directly within the offsetSeries() function ie offsetSeries(sma(10),offset)
        Alex

        Comment

        Working...
        X