• 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

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: 211
  • 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

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
OK!
 

Attachments

Hi Mr Tanaka,

Can you tell me why Holy Grail will not work on Real?
Is it just me, or is there a problem with Holy Grail EA?
Please check your work and explain to me.
Thank you kindly sir! :)

https://soehoe.id/i-will-make-a-free-ea-with-your-indicator.t9801/page-707#post-307558

Oh, who coded this EA?? It is not mine.

Oh, perhaps I should ask Reteid2222? Sorry...
https://soehoe.id/i-will-make-a-free-ea-with-your-indicator.t9801/page-705#post-307196

In case you want to take a look Mr Tanaka, MQ4 file is here:
https://soehoe.id/i-will-make-a-free-ea-with-your-indicator.t9801/page-705#post-307183

Opens trades on Demo, but not on Real? Something wrong with EX4 file?
 

Attachments

Can you ask EA owner the logic ? and tell me. I can use it in my template.

Anyway, there's no chance that you can repair the Trio Orchestra to assure that the trades will be always inverted without errors? Even if you code a version without the "reverse" function, but with the trades already reversed, it would be perfect:)
 
Back
Top