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
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
Comment