• 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

Esse era o melhor tópico de todos o tanaka fez um trabalho incrível fiquei feliz de ver que o tópico vai voltar que surgam grandes robôs
 
Hi, i m looking for an EA, Hedging Strategy with soft Martingale. EA open buy & sell at the begining and open dynamically muliltiple order any direction price moving. And always close order with profit. From mulitple order some order might close with little little loss but on avarage all open order close together with profit.
If some progrrammer/coder can make it i will appriciate.
 
ALGUMA ALMA CARIDOSA PODE FAZER UM EA COM ESSE INDICADOR COM OPCOES DE FECHAMENTO NO SINAL OPOSTO E COM GERENCIAMENTO DE DINHEIRO E COM A OPCAO DE CONFIGURAR O INDICADOR COM AS NOSSAS OPCOES
 

Attachments

[QUOTE = "Ahmad Khan, post: 379459, membro: 36101"] Olá, se você está negociando manualmente, pode usar o Tanaka Trade Master, que possui todas as opções necessárias para qualquer negociação manual. Todos os tipos de cestos e outras opções de fechamento.

[ATTACH = cheio] 110218 [/ ATTACH]

[ATTACH = cheio] 110219 [/ ATTACH]
[/ QUOTE]

LGUMA ALMA CARIDOSA PODE FAZER UM EA COM ESSE INDICADOR COM OPCOES DE FECHAMENTO NO SINAL OPOSTO E COM GERENCIAMENTO DE DINHEIRO E COM A OPCAO DE CONFIGURAR O INDICADOR COM AS NOSSAS OPCOES
 

Attachments

Please make EA from this indicator.

The rule is simple, open position at the next candle when the arrow appear.
Also close previous opposite position.

Thank you in advance.
 

Attachments

Dear Friends. I'm using MT4 script to change TP
Any one can write this code for MT5?
int start()
{
int digits = MarketInfo(Symbol(),MODE_DIGITS);
double value = NormalizeDouble(WindowPriceOnDropped(),digits);
for(int i=OrdersTotal()-1;i>=0;i--)
{
if(!OrderSelect(i,SELECT_BY_POS,MODE_TRADES))
continue;
if(OrderSymbol()!=Symbol())
continue;

RefreshRates();

if(((OrderType()==OP_BUY) || OrderType()==OP_BUYSTOP) || (OrderType()==OP_BUYLIMIT))
//if(value>Bid)
OrderModify(OrderTicket(),OrderOpenPrice(),OrderStopLoss(), value,OrderExpiration(),CLR_NONE);
}
return(0);
}

Kind Regards
 
Back
Top