Announcement

Collapse
No announcement yet.

MACD desperation

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

  • MACD desperation

    I'm having some issues replicating something I need in eSignal that I wrote simply in TS and I don't know java at all.

    It's basically a MACD but I don't know how to pass the Diff in, it only accepts OHLC it seems.

    Input: Line(0), Length1(3), Length2(10), Length3(16), Osc(16);
    Var: Diff(0);

    Diff=Average(close,length1)-average(close,length2);

    Plot2(Average(diff,length3),"Confirm");
    Plot4(Diff-Average(Diff,OSC), "OSC");


    That's it, and I know it's probably simple if I knew how to code in java.

  • #2
    Hello bseay73,

    I would like to help you convert your TS formula to EFS. However, I don't quite understand all the TS code. Please give me the layman’s explanation of how to construct your formula. Also, please describe what you would like see drawn on your chart (i.e. lines, histogram, price study or non-price study etc).

    Thanks,
    Jason K.
    Project Manager
    eSignal - an Interactive Data company

    EFS KnowledgeBase
    JavaScript for EFS Video Series
    EFS Beginner Tutorial Series
    EFS Glossary
    Custom EFS Development Policy

    New User Orientation

    Comment


    • #3
      MACD

      I appreciate the response and offer for help, but have already coded it myself and it's giving the results I want.

      Thanks again,
      Brian

      Comment

      Working...
      X