• 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

Tanaka san.
Last week I have to close manually a few trades on EA GoodArrowIndicator due to Attack Martin bugs. It is profitable EA but the bug kills it.
Set to fix lot also didn't fix the bugs. The only thing I can describe this bug is: Its not fix on any pair. Sometimes its working normally for one pair and then the bug appear.
I am doing a test on EU right now. There is bug, but I will try reattach the EA to new chart. Just have to wait for the trade to close on TP.
I will update you soon.
 
Tanaka san.
Last week I have to close manually a few trades on EA GoodArrowIndicator due to Attack Martin bugs. It is profitable EA but the bug kills it.
Set to fix lot also didn't fix the bugs. The only thing I can describe this bug is: Its not fix on any pair. Sometimes its working normally for one pair and then the bug appear.
I am doing a test on EU right now. There is bug, but I will try reattach the EA to new chart. Just have to wait for the trade to close on TP.
I will update you soon.
Wow, many people get profit with Good arrow EA?
upload_2019-5-14_10-50-28.png
 

Attachments

  • upload_2019-5-14_10-50-28.png
    upload_2019-5-14_10-50-28.png
    32.3 KB · Views: 918
Wow, many people get profit with Good arrow EA?
View attachment 84906

Hello Mr, sorry to bother you..so you're really gonna work only on some few EAs from now on? If you have no time at the moment I'll understand..I'd just like you to verify the Trio Dancer version that you coded last time, because during the test I tried the "reverse" function and it doesn't seem to affect the trades..can you do that, please? I'd really appreciate it :)
 

Attachments

Hello Mr, sorry to bother you..so you're really gonna work only on some few EAs from now on? If you have no time at the moment I'll understand..I'd just like you to verify the Trio Dancer version that you coded last time, because during the test I tried the "reverse" function and it doesn't seem to affect the trades..can you do that, please? I'd really appreciate it :)
Sorry, it is difficult for me to do further modification. It is not easy to change code of some created logic. .
 
Hae... Nataka code for me this ea... Use martingale... With pip distance 15

void OnTick()
{
// current chart, current period, 13 candles, no shift, simple, close price
double SlowMovingAverage = iMA(NULL,0,13,0,MODE_SMA,PRICE_CLOSE,0);

// current chart, current period, 13 candles, no shift, simple, close price
double LastSlowMovingAverage = iMA(NULL,0,13,0,MODE_SMA,PRICE_CLOSE,1);

// current chart, current period, 5 candles, no shift, simple, close price
double FastMovingAverage = iMA(NULL,0,5,0,MODE_SMA,PRICE_CLOSE,0);

// current chart, current period, 5 candles, no shift, simple, close price
double LastFastMovingAverage = iMA(NULL,0,5,0,MODE_SMA,PRICE_CLOSE,1);

// if the fast SMA is now above
if((LastFastMovingAverage < LastSlowMovingAverage)
&&(FastMovingAverage > SlowMovingAverage))

// Chart output for Buy Signal
Comment ("BUY");

// if the fast SMA is now above
if ((LastFastMovingAverage > LastSlowMovingAverage)
&&(FastMovingAverage < SlowMovingAverage))

// Chart output for Buy Signal
Comment ("SELL");
}
 
Sir Tanaka / Ariana.
I have a small problem while FT the Special Indi.
Suppose the trade open according to the changes of trend defined by the color of the line.
But now i don't know from where the arrow come from, and the EA is following the arrow, not the line.
Please explain. Tq.
MR. TANAKA, can you make this possible?
 
Hae... Nataka code for me this ea... Use martingale... With pip distance 15

void OnTick()
{
// current chart, current period, 13 candles, no shift, simple, close price
double SlowMovingAverage = iMA(NULL,0,13,0,MODE_SMA,PRICE_CLOSE,0);

// current chart, current period, 13 candles, no shift, simple, close price
double LastSlowMovingAverage = iMA(NULL,0,13,0,MODE_SMA,PRICE_CLOSE,1);

// current chart, current period, 5 candles, no shift, simple, close price
double FastMovingAverage = iMA(NULL,0,5,0,MODE_SMA,PRICE_CLOSE,0);

// current chart, current period, 5 candles, no shift, simple, close price
double LastFastMovingAverage = iMA(NULL,0,5,0,MODE_SMA,PRICE_CLOSE,1);

// if the fast SMA is now above
if((LastFastMovingAverage < LastSlowMovingAverage)
&&(FastMovingAverage > SlowMovingAverage))

// Chart output for Buy Signal
Comment ("BUY");

// if the fast SMA is now above
if ((LastFastMovingAverage > LastSlowMovingAverage)
&&(FastMovingAverage < SlowMovingAverage))

// Chart output for Buy Signal
Comment ("SELL");
}
Hi, this is your EA.
:ok:

EU H1

upload_2019-5-14_14-41-8.png
 

Attachments

I used the latest Tanaka template adn I added a new function.
If the order was closed with loss, then EA will be paused for xx hours and restart again.
View attachment 84835
Hello tanaka akiko !

Excellent Fix!
I have tested a set myself with a very random setting and found this profitable good results. I'm not aware of all the settings it has and doesn't know how it works. While can you help me by providing some possible profitable sets to test? I will put my time and effort to test them where you can suggest and attach set files here, which you think might be better than this.

Please check the attachment which files I had used and how it worked.
Suggest your possible good sets as file format attachment.
 

Attachments

  • set1test.set
    set1test.set
    10.8 KB · Views: 68
  • StrategyTester.gif
    StrategyTester.gif
    8.6 KB · Views: 212
  • Untitled.png
    Untitled.png
    234.3 KB · Views: 232
hello mr.Tanaka Akiko san;
can you make changes to the ea you created earlier.
If sales signal is given and the price is below 100 smma, then sell.
If the buyer gives a signal and the price is below 100 smma no trade

If the buyer gives a signal and the price is over 100 smma open buy
If sales signal is given and the price is over 100 smma, NO Trade

thank you
 

Attachments

Back
Top