Announcement

Collapse
No announcement yet.

MA of a study (generating a study of a study)

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

  • MA of a study (generating a study of a study)

    I need to create a study to put a generate a moving average of an existing study that I created. Within the sma parameters

    sma( nLength [, Series | sym() | inv() ][, nBarIndex ] )


    How would I let the function know that I want it to perform the calculation on the study that I created?

    I tried to do sma(10,sym(STUDYNAME)), but that doesn't work. Any help would be greatly appreciated

  • #2
    use:

    sma(10,getSeries(STUDYNAME))

    see documetation:

    EFS KnowledgeBase - EFS Glossary - getSeries()

    Comment

    Working...
    X