Announcement

Collapse
No announcement yet.

Fractal Line Interval

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

  • Fractal Line Interval

    Could anyone help me modify Bill Williams ABillW_FractalLine.efs to add an interval? I believe I know how to add the Interval Array in pre-Main, but I'm having a terrible time trying to call the interval or finish the code in Main. Thank you in advance.

    added the following to preMain:

    fpArray[x] = newFunctionParameter("Interval",FunctionParamenter .STRING);
    with(fpArray[x++]){
    setDefault(5);
    Attached Files

  • #2
    Re: Fractal Line Interval

    turbotrade
    Rather than modifying the efs the easier solution is to create another efs which calls that one using efsExternal() and passes to it the required interval using the inv() function (for the description and syntax of these functions see the links to the respective articles in the EFS KnowledgeBase). This will make the efs you are calling run in the context of the interval that is being passed.
    Alex


    Originally posted by turbotrade
    Could anyone help me modify Bill Williams ABillW_FractalLine.efs to add an interval? I believe I know how to add the Interval Array in pre-Main, but I'm having a terrible time trying to call the interval or finish the code in Main. Thank you in advance.

    added the following to preMain:

    fpArray[x] = newFunctionParameter("Interval",FunctionParamenter .STRING);
    with(fpArray[x++]){
    setDefault(5);

    Comment


    • #3
      Alex,
      Of course...I didn't even think of that. Works perfectly.

      Many thanks again for your time and help,
      Jody

      Comment


      • #4
        Jody
        You are most welcome
        Alex


        Originally posted by turbotrade
        Alex,
        Of course...I didn't even think of that. Works perfectly.

        Many thanks again for your time and help,
        Jody

        Comment

        Working...
        X