Before we go to methods of entering and exiting with this indicator, I need to give you the program for it so that you can put it on your own chart.
Of course, you can load each ema separately, give it the correct value, then color it and do this…12 times. :eek: :eek:
Much better to have the indicator all in one so that a couple of mouse clicks loads the entire thing!!
I have written the program in GFT Ctl language but I ask that someone translates this into MT4 language.
[B]Here is how to load the program in GFT…[/B]
Open a new file in My Documents - call it “Dealbook” or similar if you like.
Open the [B]Chart Studio[/B] program and click[B] file/new[/B]
[B]copy/paste[/B] the following…
indicator A_DIRECTION ;
draw line_one(“EMA 1”, solid_line, dark_blue,2), line_two(“EMA 2”, solid_line, blue,2), line_three(“EMA 3”, solid_line, blue),
line_four(“EMA 4”, solid_line, blue), line_five(“EMA 5”, solid_line, blue), line_six(“EMA 6”, solid_line, blue),
line_seven("EMA 7", solid_line, red), line_eight("EMA 8", solid_line, red), line_nine("EMA 9", solid_line, red),
line_ten("EMA 10", solid_line, red), line_eleven("EMA 11", solid_line, red), line_twelve("EMA 12", solid_line, red);
begin
line_one := ema(close, 3);
line_two := ema(close, 5);
line_three := ema(close, 8);
line_four := ema(close, 10);
line_five := ema(close, 12);
line_six := ema(close, 15);
line_seven := ema(close, 30);
line_eight := ema(close, 35);
line_nine := ema(close, 40);
line_ten := ema(close, 45);
line_eleven := ema(close, 50);
line_twelve := ema(close, 60);
end.
Click [B]Build/instal [/B]module.
Type [B]“A_Direction”[/B] into the file entry box.
Click [B]save[/B]. (program installed successfully appears below).
[B]Translaters into MT4 wanted.[/B]