fiz o pagamento da mensalidade do fxdreema e nao creditaram os 35 dias em minha conta preciso que liberem a versão profissional preciso dar continuidade aos meu projetos ja fiz o pagamento dos 35 dias
Posts made by lucas farias de almeida
-
pagamento feito mas nao foi creditado na minha plataformaposted in Questions & Answers
-
RE: take profit para zerar tds ordem do grid e ordens aberta somente comtra e nao favorposted in Questions & Answers
@l-andorrà So far I know what it's about, I just don't understand the question about the pink blocks, that's what I want you to explain to me, but I've seen that it's difficult here, it takes one to two days before answering a question like that is very difficult.
-
RE: take profit para zerar tds ordem do grid e ordens aberta somente comtra e nao favorposted in Questions & Answers
@l-andorrà I understand that, but I think it's wrong because if I leave it like that it will open sell orders if I had open buy orders and open buy orders with open sell orders
-
RE: take profit para zerar tds ordem do grid e ordens aberta somente comtra e nao favorposted in Questions & Answers
@l-andorrà I definitely don't know how to do this so I'm asking for your help if you can help me I would appreciate it please go to the link and add the necessary changes so I can have some understanding about this the problem I don't know what it is I don't know how to solve it I don't know where the error is Can you add the blocks for me in the right place by entering the link please if you can I would appreciate it
-
RE: take profit para zerar tds ordem do grid e ordens aberta somente comtra e nao favorposted in Questions & Answers
Can you give me an example using the blocks I sent you please, if you can I would greatly appreciate it
-
RE: take profit para zerar tds ordem do grid e ordens aberta somente comtra e nao favorposted in Questions & Answers
@l-andorrà Can you help me by giving me some examples can you just change this in the link for me please can you give me an example of what you said
-
problema no grid de ordensposted in Questions & Answers
Good afternoon my friends, I'm trying to have a problem with an rbo I created, it uses a grid. The first problem I'm having is that I wanted it to be possible, regardless of how many grid orders are open, to reset them all when reaching the takeprofit of the first order. Another issue is that I want him to only open orders on the grid in the opposite direction of the first order for example in a purchase he should only open orders when the request comes against the first order and not in favor and he is opening in favor too how can I solve this can you help me please?
-
take profit para zerar tds ordem do grid e ordens aberta somente comtra e nao favorposted in Questions & Answers
Good afternoon my friends, I'm trying to have a problem with an rbo I created, it uses a grid. The first problem I'm having is that I wanted it to be possible, regardless of how many grid orders are open, to reset them all when reaching the takeprofit of the first order. Another issue is that I want him to only open orders on the grid in the opposite direction of the first order for example in a purchase he should only open orders when the request comes against the first order and not in favor and he is opening in favor too how can I solve this can you help me please?
-
RE: grid with order spacing and multiplication factor with universal take profit according to loss coverage and the distance between ordersposted in Questions & Answers
you didn't clarify anything my friend and this link you shared you are selling me a product I'm not asking for something to buy but rather help I think it shouldn't be allowed you are sharing external sales links here
-
grid with order spacing and multiplication factor with universal take profit according to loss coverage and the distance between ordersposted in Questions & Answers
for example, the robot opened a purchase and the market went against it, it will open a new purchase order respecting the distance between the orders and at the same time it will bring the takepprofit covering the amount of profit from the previous order, upon reaching the takeprofit it has to close all orders
Does anyone have any ideas to help me create this system please?
-
pagamentoposted in Questions & Answers
ola fiz o pagamento da mensalidade e ainda não ativaram minha versão completa preciso ativar meus mês por favor ja fiz o pagamento e tenho trabalhos a realizar obrigado
se poder da uma ateção o mais rapido possivel a isso eu agradeço obrigado -
RE: corretoras de 2 digitos e 1 digito como ajustar o Expert pra essa mudança?posted in Questions & Answers
como ajustar o EA para usar em corretoras de 1 digito 2 digitos e 3 digitos como comfigurar esta opção dentro do fxdreema?
-
corretoras de 2 digitos e 1 digito como ajustar o Expert pra essa mudança?posted in Questions & Answers
2-digit and 1-digit brokers how to adjust the Expert for this change?
-
RE: Finally, News Filter for MT5 in 1 easy to use Block !!posted in Tutorials by Users
segui exatamente oque esta ai não deu nenhum erro porem nao aparece nenhum evento no grafico como posso saber se funciona ou não ?
e como posso usar as regras dele para desligar o botão negociação automatica antes do evento e voltar a ligar após o evento envez de abrir uma order de compra ou venda me explica ai por favor oque esta acontecendo -
Expert força moeda contra moedaposted in Tutorials by Users
como posso criar um expert no fxdreema que use a cotação de um símbolo contra o outro por exemplo EURUSD o expert ira medir o range do simbolo EUR em comparação ao USD ou seja o range do USD menor de que EUR Executa Compra No EURUSD e se o USD for maior executa venda no EUR USD.
-
takeprofit movel cobrindo lucro da proxima orden do gridposted in Tutorials by Users
olá boa noite amigos estou criando um grid que utiliza multiplicador de lots e pipsway entre ordens gostaria de colocar uma opção de cobertura como se fosse o take profit da primeira ordem se movendo e cobrindo o o lucro na ordem seguinte e quando o preço atingir o take profit ele zerar todas as ordens no lucro
-
RE: Finally, News Filter for MT5 in 1 easy to use Block !!posted in Tutorials by Users
@QuantEngineer said in Finally, News Filter for MT5 in 1 easy to use Block !!:
/*
int minbeforeEvent = 6024;
int minAfterEvent = 6024;
string currency_code = "";
string country_code=NULL; //--- country code (ISO 3166-1 Alpha-2)
ENUM_CALENDAR_EVENT_IMPORTANCE min_event_importance = CALENDAR_IMPORTANCE_HIGH;
*/int FilteredEventsCount = 0;
MqlCalendarValue values[];
//--- set the boundaries of the interval we take the events from
datetime date_from=TimeCurrent() - (60minbeforeEvent);
datetime date_to=TimeCurrent() + (60minAfterEvent); // 0 means all known events, including the ones that have not occurred yet
//Print(TimeToString(TimeCurrent(), TIME_DATE|TIME_SECONDS), " -> Searching from ", TimeToString(date_from, TIME_DATE|TIME_SECONDS), " to ", TimeToString(date_to,TIME_DATE|TIME_SECONDS));
//--- request event history since the beginning to future time//if(verbose) Print("Begin Searching for events from " + TimeToString(date_from,TIME_DATE|TIME_SECONDS) + " to " + TimeToString(date_to,TIME_DATE|TIME_SECONDS) + " For Country " + country_code + ", currency " + currency_code );
if(!CalendarValueHistory(values, date_from, 0, country_code, currency_code))
{
PrintFormat("Error! Failed to get events for country_code=(%s), currency=(%s)", country_code, currency_code);
PrintFormat("Error code: %d", GetLastError());} else {
//if(verbose) Print("Found some events");
//PrintFormat("Received event values for country_code=(%s), currency=(%s) is (%d)", country_code, currency_code, ArraySize(values));
int total=ArraySize(values);
string commentString = "";
for(int i=0; i<total; i++)
{
//if(values[i].impact_type < )
MqlCalendarEvent event;
ulong event_id=values[i].event_id;
if(CalendarEventById(event_id,event))
{
if(((ENUM_CALENDAR_EVENT_IMPORTANCE)event.importance >= min_event_importance )
&& (values[i].time <= date_to)
)
{
FilteredEventsCount++;commentString = commentString + TimeToString(values[i].time,TIME_DATE|TIME_SECONDS) + " " + event.name + " " + EnumToString((ENUM_CALENDAR_EVENT_IMPORTANCE)event.importance ) + "\n"; } } }commentString = "MQL5 returned " + FilteredEventsCount + " events from " + TimeToString(date_from,TIME_DATE|TIME_SECONDS) + " to " + TimeToString(date_to,TIME_DATE|TIME_SECONDS) + " For Country " + country_code + ", currency " + currency_code + "\n" + commentString;
if(verbose) Comment(commentString);
}
if( FilteredEventsCount > 0 )
{~next~}
else
{~inext~} -
filtro de noticias no expert usando fxdreemaposted in Tutorials by Users
olá boa noite meus amigos existe como colocar um filtro de noticias em meu expert usando o fxdreema se tem como alguém pode me dar uma dica por favor