Announcement

Collapse
No announcement yet.

writing an EFS for the first time

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

  • writing an EFS for the first time

    i am trying to write a efs with a stoc and rsi

    the format for another program is

    ((stoc15.10)+(rsi10))/2

  • #2
    Re: writing an EFS for the first time

    MAR001
    The screenshot enclosed below illustrates how you would set up and write that equation in the Formula Wizard.
    The code to be used in the Returned Data Points line [which is not entirely visible in the screenshot] is the following
    ((vStoch15_10.getValue(StochStudy.FAST) + vRSI10.getValue(RSIStudy.RSI))/2)
    The additional parenthesis that enclose the entire equation are necessary to prevent the Formula Wizard from editing that line [as it is unable to understand its construct]
    Beyond this you may need to use the EFS Editor as you may be exceeding the capabilities of the Formula Wizard
    Alex





    Originally posted by MAR001
    i am trying to write a efs with a stoc and rsi

    the format for another program is

    ((stoc15.10)+(rsi10))/2

    Comment

    Working...
    X