Announcement

Collapse
No announcement yet.

Help - EFS error on a call

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

  • Help - EFS error on a call

    I have an efs that does a call to another efs in a separate Bollinger library, and it cannot seem to read the filename properly. The call is in C:\Program Files\eSignal\Formulas\Bollinger\Bandwidth.efs
    but I keep getting an error on the calling efs - it strips off the backslash '\' character when I load it.

    Error message I get it:
    Downloads\ColorBBVolatility.efs, line 31: Can notfind formula C:Program FileseSignalFormulasBollingerBandwidth.efs

    Here's a copy of my problem efs
    Attached Files

  • #2
    wavetrader
    Try replacing
    var vBandwidth = call("C:\Program Files\eSignal\Formulas\Bollinger\Bandwidth.efs");
    with
    var vBandwidth = call("/Bollinger/Bandwidth.efs");
    The script should now be able to find the called efs
    Alex

    Comment


    • #3
      Thanks Alexis. That worked!

      Comment

      Working...
      X