- Credits
- 7
*BUMP!
Please participate in the poll! Help Mr Tanaka decide which EA he (and we) should all focus on to improve!
Thank you all for your participation!
YES!do you code all this EA???
Wow, many people get profit with Good arrow EA?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?
View attachment 84906
Sorry, it is difficult for me to do further modification. It is not easy to change code of some created logic. .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. .
I think the best way is to find the EA logic and copy into my template... though it is hard.Do you mean that the "reverse" function that you coded inside this Trio Dancer version can't work in any way?![]()
I think the best way is to find the EA logic and copy into my template... though it is hard.
Can you ask EA owner the logic ? and tell me. I can use it in my template.I see..won't you make an attempt for a cup of coffee or two?![]()
MR. TANAKA, can you make this possible?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.
sorry, its the EA _ Special_Indicator.MR. TANAKA, can you make this possible?
Can you ask EA owner the logic ? and tell me. I can use it in my template.
Please FT and share the result, please.A great indicator will not repaint ... !! it's worth an EA!

Hi, this is your EA.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");
}

Hello tanaka akiko !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