Announcement

Collapse
No announcement yet.

Acess EFS studies from EFS code

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

  • Acess EFS studies from EFS code

    Hi

    I want to write EFS study that use other studies, the studies I care about are

    Advance GET studies -> GET : Elliott Waves
    Advance GET studies -> GET : Osc
    Add-On Studies -> Triades -> TriadesPivotsSwings.efs

    Any idea how to access those studies from EFS code?

    Final

  • #2
    Re: Acess EFS studies from EFS code

    Final
    The GET studies can be accessed directly using efs functions. For the list of the available GET functions see the Function Reference-> AdvancedGET Studies folder in the EFS KnowledgeBase
    You can call other scripts using the efsExternal() function. For the description and syntax of this function see the link to the corresponding article in the EFS KnowledgeBase. If you run a search in this forum for efsExternal* you will also find several detailed examples on the use of this function
    Alex


    Originally posted by mulyoved
    Hi

    I want to write EFS study that use other studies, the studies I care about are

    Advance GET studies -> GET : Elliott Waves
    Advance GET studies -> GET : Osc
    Add-On Studies -> Triades -> TriadesPivotsSwings.efs

    Any idea how to access those studies from EFS code?

    Final

    Comment


    • #3
      Access Triades from EFS code

      Hi

      I tried

      triades = efsExternal("/Advanced/Triades/TriadesPivotsSwings.efs");
      var tri = triades.getValue(0);

      but it return null

      Any idea how to get the Triades signals from EFS code?

      Muly

      Comment


      • #4
        Re: Access Triades from EFS code

        Muly
        It is possible that the efs may not be returning any values. As the study is encrypted you may need to contact Triades' developers to find out how to retrieve the information you want
        Alex


        Originally posted by mulyoved
        Hi

        I tried

        triades = efsExternal("/Advanced/Triades/TriadesPivotsSwings.efs");
        var tri = triades.getValue(0);

        but it return null

        Any idea how to get the Triades signals from EFS code?

        Muly

        Comment

        Working...
        X