Announcement

Collapse
No announcement yet.

/Library/ma.efs

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

  • /Library/ma.efs

    I just recently bought a new computer and installed eSignal on it and transferred all my efs files to it.

    My first time to Esignal on the new computer, I got errors on 2 of my efs's, all pointing to a statement that calls the /Library/Ma.efs

    The following is tha actual statement where I get the error:

    var vMA = call("/Library/ma.efs", nLengthMA);

    I changed the forward slashes to backslashes, I even put in the entire library name (C:\Program Files\etc...)
    but I still keep getting an error.

    How do I solve this?

    Thanks,
    wt

  • #2
    wt
    Try the enclosed efs which I just tested and know works

    PHP Code:
    function preMain(){
    setPriceStudy(true);

    }
    function 
    main(nLength){
    if(
    nLength==null)
    nLength=20;


    var 
    vMA call("/library/ma.efs"nLength);

    return 
    vMA;

    If you still get an error you may want to check the path for Formula Root. To check this select Tools->EFS->Settings
    Alex

    Comment


    • #3
      Alexis,
      I tried that; it didn't work.

      This used to work on my old Pentium III.
      I also checked my root and it's pointing to the default.

      DO you have any other work-arounds?

      Comment


      • #4
        wt
        Have you also tried placing the calling efs in the same folder where the ma.efs is and then running it from there?
        I just tried the efs I posted also on a different machine and it works fine on that one too (one is a P3/win2k the other a P4/winXP)
        Alex

        Comment

        Working...
        X