Announcement

Collapse
No announcement yet.

MA Price Bars

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

  • MA Price Bars

    Hi,

    Cuurently there is a formula study for MA Price Bar based on Simple Average only. How can I modify this to use an Exponential, Weighted or a Volume Weighted average? Can anyone help? Thanks.

    Sesh

  • #2
    Edit the EFS....

    Edit the EFS and look for a line that is similar to the following...


    study2 = new MAStudy(3, 0, "Open", MAStudy.SIMPLE);

    This line defines the MA STUDY that is used to calculate the MA values for your EFS.

    All you would need to do is change the "MAStudy.SIMPLE" to...

    MAStudy.EXPONENTIAL
    MAStudy.WEIGHTED
    MAStudy.VOLUMEWEIGHTED

    Brad
    Brad Matheny
    eSignal Solution Provider since 2000

    Comment

    Working...
    X