• 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

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: 876
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.
 

Attachments

  • upload_2019-6-12_17-7-41.png
    upload_2019-6-12_17-7-41.png
    11.5 KB · Views: 874
  • EA_Jum+StoCh+v2.5F(NEW).ex4
    EA_Jum+StoCh+v2.5F(NEW).ex4
    410.9 KB · Views: 213
  • upload_2019-6-12_17-14-23.png
    upload_2019-6-12_17-14-23.png
    12.8 KB · Views: 867
  • EUM5hedge.set
    EUM5hedge.set
    12.2 KB · Views: 191
Last edited:
Nee
Hi tanaka
Could fix the bug for my EA?
Any order to buy or sell will automatically open those orders again if it is a manual or take profit clause Re open bug re-open true false and need opposite closed option
Need indi?
upload_2019-6-12_17-18-55.png
 

Attachments

  • upload_2019-6-12_17-18-55.png
    upload_2019-6-12_17-18-55.png
    9.7 KB · Views: 849
Back
Top