Klik Alfan
New Member
- Credits
- 0
Please, can you make a filter so that 2 EMAs work together with the Strategy in it, and I need the mql file as learning if you wishthis EA is working, gave error here ,,,
Please, can you make a filter so that 2 EMAs work together with the Strategy in it, and I need the mql file as learning if you wishthis EA is working, gave error here ,,,
you use only for EU, 1 EU normal (reverse FALSE), and 1 EU with Reverse (TRUE), right?Cool.
this is mine with 200 balance
https://www.myfxbook.com/members/shlord/super-arrow-revb/3347897
For me it is expired.Hello my friend
If it is possible for you
Convert this indicator to EXPERT
Sincerely thank you in advance for your assistance
http://s4.picofile.com/file/8363329768/Forex_Gump.ex4.html
![]()
No problem. It is very good EA. You can check here.hai tanaka akiko I tried ea titanxpro BT in 2018-2019 to get a profit, but tried in 2017-2018 the account was destroyed. try you BT in 2017, please share the results and set
No problem. It is very good EA. You can check here.
http://tanakaakiko-ea-coder.blog.jp/archives/18262955.html
Yes, please FT.do you use this one ???
for buy is correct for sell the second arrow
where can I get ea mother ???Yes, please FT.
https://soehoe.id/i-will-make-a-free-ea-with-your-indicator.t9801/page-839#post-316552where can I get ea mother ???
Sorry, this is not my EA and the logic is hard to understand and it is very difficult for me to move logic into my template. Please find the better EA!good day mr tanaka, can you change this ea with new template like super arrow indicator?
thanks for your kindness
OK, I think I got a logic..... Let me try....good day mr tanaka, can you change this ea with new template like super arrow indicator?
thanks for your kindness
double ima_4 = iMA(Symbol(), 0, maPereode, 0, MODE_LWMA, PRICE_CLOSE, 0);
double istochastic_12 = iStochastic(NULL, 0, kperiod, dperiod, slowing, MODE_SMA, 0, MODE_MAIN, 0);
double istochastic_20 = iStochastic(NULL, 0, k_period, d_period, s_lowing, MODE_SMA, 0, MODE_MAIN, 0);
if (Ai_0 == 1 && f0_0() == 1) {
if (Close[1] < ima_4 && istochastic_12 > lo_level) return (2);
if (Close[1] > ima_4 && istochastic_12 < up_level) return (-2);
}
if (Ai_0 == -1 && f0_4() == 1) {
if (istochastic_20 > uplevel) return (2);
if (istochastic_20 < lolevel) return (-2);
}
yes exactly
thx mr tanakaOK, I think I got a logic..... Let me try....
Code:double ima_4 = iMA(Symbol(), 0, maPereode, 0, MODE_LWMA, PRICE_CLOSE, 0); double istochastic_12 = iStochastic(NULL, 0, kperiod, dperiod, slowing, MODE_SMA, 0, MODE_MAIN, 0); double istochastic_20 = iStochastic(NULL, 0, k_period, d_period, s_lowing, MODE_SMA, 0, MODE_MAIN, 0); if (Ai_0 == 1 && f0_0() == 1) { if (Close[1] < ima_4 && istochastic_12 > lo_level) return (2); if (Close[1] > ima_4 && istochastic_12 < up_level) return (-2); } if (Ai_0 == -1 && f0_4() == 1) { if (istochastic_20 > uplevel) return (2); if (istochastic_20 < lolevel) return (-2); }
Oh, you can not download EA from my blog.Hi Tanaka ,
I follow your blog daily with great interest but I have not understood where you can download and test your EAs, within your blog I do not find a DOWNLOAD area.
For example, where can EA download below?
Thank you for a kind reply
View attachment 88138
Why don't you use normal tp/sl/ trailing?yes exactly