• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Suggestion I will make a Free EA with your Indicator

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

GBPUSDM15.png
For me it is expired.
but you can try.

upload_2019-6-12_15-3-41.png
 

Attachments

Hi Tanaka,

Thankyou for all your hard work here on this forum. Very much appreciated. Could you please make a simple EA from this indicator. A simple buy and sell with the arrows. When next arrow appears close the previous trade and open next one. Thankyou.
 

Attachments

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....
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);
   }
 
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





upload_2019-6-12_9-51-20.png
 

Attachments

  • upload_2019-6-12_9-51-20.png
    upload_2019-6-12_9-51-20.png
    87 KB · Views: 877
OK, 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);
   }
thx mr tanaka
 
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
Oh, you can not download EA from my blog.
All EA is in this forum...in this thread.
 
Back
Top