https://www.forexfactory.com/thread/1020164-universal-indicator-ea-expert-advisor-for-yourHello everyone.
I would like to create an EA from custom indicator, but I can't. Can someone help me?
thank you
Here is an idea :Hello everyone.
I would like to create an EA from custom indicator, but I can't. Can someone help me?
thank you
Thankyou petar, you are good personHere is an idea :
renamed indicator as Goodarrow, and use EA Goodarrow for testing , see if any body can come with good settings.
Good thing is that we have indicator mq file , so we can play with settings.
It's very sophisticated EA (probablly one of the best EA's arround), developed by Mr. Tanaka :
you welcome, not sure if it's gonna work, test it first to be safe. Let us know how it goes !Thankyou petar, you are good person
in testing looks to good to be true, don't think result's are for real !Thankyou petar, you are good person
Here is an idea :
renamed indicator as Goodarrow, and use EA Goodarrow for testing , see if any body can come with good settings.
Good thing is that we have indicator mq file , so we can play with settings.
It's very sophisticated EA (probablly one of the best EA's arround), developed by Mr. Tanaka :
Hello everyone.
I would like to create an EA from custom indicator, but I can't. Can someone help me?
thank you
Here is an idea :
renamed indicator as Goodarrow, and use EA Goodarrow for testing , see if any body can come with good settings.
Good thing is that we have indicator mq file , so we can play with settings.
It's very sophisticated EA (probablly one of the best EA's arround), developed by Mr. Tanaka :
Terimakasih mas akangdw, besok coba saya backtestIni EA berdasarkan indicator untuk scalping, silahkan indikator di backtest sendiri. Terlampir source code. (This EA is based on indicators for scalping, please backtest the indicators yourself. Attached source code.)
Terimakasih mas akangdw, besok coba saya backtest
Terimakasih mas akangdw, besok coba saya backtest
terimakasih mas akangdw atas bimbingannya, saya sudah backtest dan pelajari.
saya punya ide, tapi saya tdk paham untuk codingnya. jika berkenenan mohon di modifkan yang ea "modifikasi moving average" dengan rule basket trading :
1. target tp in usd
2. apabila op pertama belum mencapai target in usd kemudian muncul sinyal baru op posisi kedua dgn lot x 2, apabila op pertama dan kedua masih belum mencapai target kemudian muncul sinyal baru op lagi sesuai sinyal yg muncul dengan lot x 3, dst.
3. dikasih stop loss in usd
apabila berkenan mohon disematkan mas akangdw. terimakasih
Hello everyone.
I would like to create an EA from custom indicator, but I can't. Can someone help me?
thank you
//Buy: when close crosses over NonLagMA
//Sell: when close crosses under NonLagMA
int Shift = 1
double macurrent = iCustom(NULL, 0, "NonLagMA_v7.1", 0, Shift);
double maprevious = iCustom(NULL, 0, "NonLagMA_v7.1", 0, Shift+1);
double close_current = iClose (NULL,0,Shift);
double close_previous = iClose (NULL,0,Shift+1);
// Buy
if (close_current >= macurrent && close_previous <= maprevious)
// Sell
if (close_current <= macurrent && close_previous >= maprevious)
//Buy: when current line is up and blue and previous line is down and red
//Sell: when current line is down and red and previous line is up and blue
int Shift = 1
double buy_macurrent = iCustom(NULL, 0, "NonLagMA_v7.1", 1, Shift);
double buy_maprevious = iCustom(NULL, 0, "NonLagMA_v7.1", 1, Shift+1);
double sell_macurrent = iCustom(NULL, 0, "NonLagMA_v7.1", 2, Shift);
double sell_maprevious = iCustom(NULL, 0, "NonLagMA_v7.1", 2, Shift+1);
// buy
if(sell_maprevious != EMPTY_VALUE && sell_macurrent == EMPTY_VALUE && buy_macurrent != EMPTY_VALUE)
//sell
if(buy_maprevious != EMPTY_VALUE && buy_macurrent == EMPTY_VALUE && sell_macurrent != EMPTY_VALUE)
//Buy: when current trend is up and previous trend is down
//Sell: when current trend is up and previous trend is down
int Shift = 1
double trend_macurrent = iCustom(NULL, 0, "NonLagMA_v7.1", 3, Shift;
double trend_maprevious = iCustom(NULL, 0, "NonLagMA_v7.1", 3, Shift+1;
// buy
if (trend_macurrent == 1 && trend_maprevious == -1)
//sell
if (trend_macurrent == -1 && trend_maprevious == 1)
int Shift = 1
double buffer_0 = iCustom(NULL, 0, "BO_SIGNAL", 0, Shift;
double buffer_1 = iCustom(NULL, 0, "BO_SIGNAL", 1, Shift;
// buy
if (if(buffer_0 != EMPTY_VALUE && buffer_0 != 0)
// sell
if (if(buffer_1 != EMPTY_VALUE && buffer_1 != 0)
int Shift = 1
double buffer_0 = iCustom(NULL, 0, "BO_SIGNAL", 0, Shift;
double buffer_1 = iCustom(NULL, 0, "BO_SIGNAL", 1, Shift;
if (buffer_0 != buffer_1)
{
// buy
if (if(buffer_0 > buffer_1)
// sell
if (if(buffer_0 < buffer_1)
}
thank you petar for a wonderful idea. i tried changing name of indy to another following to your advice. i used dynamix to replace goodarrow, but it's placing only sell orders. how can i correct this? thank you very much.Here is an idea :
renamed indicator as Goodarrow, and use EA Goodarrow for testing , see if any body can come with good settings.
Good thing is that we have indicator mq file , so we can play with settings.
It's very sophisticated EA (probablly one of the best EA's arround), developed by Mr. Tanaka :