Announcement

Collapse
No announcement yet.

Gann Retracements

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

  • Gann Retracements

    Hi

    I have made an indicator/oscillator in metastock language that give me the gann retracement of each bar and I would like to know is it's possible to make the same indicator/oscilator in EFS.

    I publish below the meta script for those who can help me



    {Gann Retracements}


    Blue:= Ref(((HIGH-LOW)*0.875)+LOW,(0));
    Blue;

    Red:=Ref(((HIGH-LOW)*0.75)+LOW,(0));
    Red;

    Green:=Ref(((HIGH-LOW)*0.66)+LOW,(0));
    Green;

    Blue:=Ref(((HIGH-LOW)*0.625)+LOW,(0));
    Blue;

    Red:=Ref(((HIGH-LOW)*0.50)+LOW,(0));
    Red;

    Blue:=Ref(((HIGH-LOW)*0.375)+LOW,(0));
    Blue;

    Green:=Ref(((HIGH-LOW)*0.33)+LOW,(0));
    Green;

    Red:=Ref(((HIGH-LOW)*0.25)+LOW,(0));
    Red;

    Blue:=Ref(((HIGH-LOW)*0.125)+LOW,(0));
    Blue;

    Thank you for all the help
    Merry Christmas

  • #2
    PTC Man
    I am not sure this is what you want never the less the attached efs will plot the levels you provided for the current bar.
    The script was created with the Formula Wizard which can be used to view/edit the formula
    Alex

    Attached Files

    Comment


    • #3
      Alexis

      Many thanks

      That's exactly what I want.
      I open for the first time the Formula Wizard. Try to modify the way the retracements are plotted ( I want them in a separated pane) and was very simple to do that. Even modify the color in witch the specific retracement value are plotted

      Again, thank you for your help

      Comment

      Working...
      X