Quantcast
Channel: MQL5: MetaTrader 5 trading, automated systems and strategy testing forum
Viewing all 75046 articles
Browse latest View live

financial operations are blocked

$
0
0
gbemitte:

pm the Admin and they will unlock your account. After your account is unlock then, you can do this: go to profile > security > binding to IP Address > then uncheck control season by IP. 

That is what i did.

Thanks

I understand!

I wrote to it.

Thanx for your help!


Automated Trading Championship 2012: Championship's Fifth Week Minutes

$
0
0

Let us provide you with data on deals and positions as of the end of the fifth competition week in our usual "Minutes of the Automated Trading Championship 2012". The main event of the week is the positive difference of the floating profit and loss. This has become possible mainly thanks to the most popular currency pair of the Championship - EURUSD! Let's see what else has happened this week!

Here you will know about the distribution of the number of deals, profits and losses at each currency pair, as well as the average result of each trading deal.

Distribution of Participants' deals by currency pairs

The full text of the news can be found on the Championship's website - Championship's Fifth Week Minutes.

Indicators: Ease of Movement

$
0
0

Hello Nikolay!

nice work! Tested, but scale doesent work! Value always ZERO.


Close deal instead of position

$
0
0

There is absolutely no difference, which deal to close :-). Consider you bought several gold bars at different price. Now they are lying in your strongbox all shiny and glittery. Will it matter, which one of them you sell first? No, what matters is the average price you've bought them all for.

MetaTrader 5 Workshop 2012

Discussion of article "How to Subscribe to Trading Signals"

$
0
0

Can we please have some clarity on what's happening with the Money Management settings in the Signals tab?

The tab now looks quite different to the screenshot in the article.

 

Specifically, if the Signals source uses a fixed lot size, how does the Subscriber set a higher (or lower) lot size?

I feel that is something that should be easy for the Subscriber to do. 

synchronization with the server

$
0
0

JMRodMartins:

I agree, MetaQuotes can't restart the E.A.. But it should be able to keep up, in the Championship, a constant connection to the server - without absolutly any need for restarting.

But, in the facts: the server is not synchronized from 00:00 to 12:00 almost every day! No trading in this time!  => I think,  this is no serious championship.

I hope you don't mind that I'm going to write a little bit detail here, so that if there's rookie reads this topic, they understand what it mean of not synchronized. 

There is a reason why MetaQuotes create SymbolIsSynchronized(). Back in mql4, we only have RefreshRates() function which the same like right click the chart and select Refresh Rates. Basically it just download the latest data of the chart from the server. However, in mql4 we have no knowledge, if the price that EA or CI currently working is out of date and/or if there's new/updated price at server, therefore if the RefreshRates() is really needed or necessary. Running RefreshRates() is actually took time in mql4, so it just waste of time if the price is actually synchronized.

So that's why MQ create SymbolIsSynchronized() function in mql5. If it return false, then we know that there's new/updated price at server, and/or the price that EA or CI is currently working is old/out-of-date. To update the price, we simply call SymbolInfoTick() (or RefreshRates method of SymbolInfo Class).

There are several reason why terminal is not synchronize with server. Just to name a few, there are, bad (internet) connection between terminal and server, EA or CI that takes too long in processing tick, or a price that move very fast which makes the EA or CI looks like too long in processing tick. 

But I think you already know that.

I can only guess why you get this synchronized error. Maybe MQ trying to emulate real trading environment in ATC, or the price is moving very fast.

I don't know the logic of your EA, however if there's a need to restart the EA, there are several work around to restart the EA without opening the EA property. Write all the codes of OnInit() in a user defined function, call it in OnInit() and when you get synchronize error, then call this function again.

Hopes that helps. 

 

Automated Trading Championship 2012: Interview with Dmitry Terentew (SAFF)

$
0
0
Is it really necessary to be a programmer to develop trading robots? Do we need to spend years monitoring price charts to be able to "feel" the market? Is it possible for a random entry strategy to survive in the market for quite a long time? All these issues have been discussed in our interview with Dmitry Terentew (SAFF), whose trading robot has been occupying the first page of the Championship from the very beginning.
Dmitry Terentew (SAFF) - Automated Trading Championship 2012 ParticipantYour robot's trading style is quite unusual. It is always in the market opening a long position right after closing a previous one. Why does it behave in such a way?

I don't want to reveal all my secrets. The Expert Advisor has been generated by MQL5 Wizard in 5 minutes and refined manually to fit the Championship Rules. In fact, the initial idea has been generated by MQL5 Wizard. Besides, optimization of parameters has yielded some results. Wizard is a very useful thing.

The popular quotation "Every cook can run the state" can be applied to the Championship. Every user who knows MQL5 at least to some degree can develop an operational trading robot.

Code Base contains a few dozens of modules for generating Expert Advisors using MQL5 Wizard. Have you seen them?

Yes, I've implemented some changes to MoneyFixedRisk.mqh library and inserted necessary trading parameters into the robot's code.

So, it seems that you have not had any difficulties with the modules for the automatic generation of robots in MQL5 Wizard?

I have not seen anything too complicated. All is quite simple. I've spent a few hours plus some more time for passing the automatic tests. It is not difficult to read a ready-made code if you have at least some knowledge of programming. However, I am a network engineer rather than a programmer.

The full text of the news can be found at the Championship's website - Interview with Dmitry Terentew (SAFF).


MQL5 Cloud Network: Are You Still Calculating?

$
0
0
gbemitte:

The payment is too low. please, do something about it

true true :)

 

Help to Convert this GREAT SIGNAL from mql4 to mql 5

$
0
0

This indicator Redraws after time goes.

Help!运行MT5测试C盘空间被大量侵吞了,如果删除?谢谢Help! Run the MT5 tests C disk space has been embezzled, if you delete? Thank you

$
0
0
chenjd:

不要再实体中添加新的类 在MT提供的例子中也犯同样的错误 《我的第一个“圣杯”》有所改进

Please use English when posting and post only something that related to the topic.

translate.google.com  www.bing.com/translator/

"Real" global variable

$
0
0

In chapter about paralelism you can find:

Data exchange

We can transmit the information between the MM and CM using any of the 3 ways:

  1. global variables of the terminal;
  2. files;
  3. Indicator buffers.

 

What i would like to know, are there any plans  for introducing multi-threading?
So that one can run different threads from EA? 

Display each order/trade in MT5

$
0
0

Hello all

I've (e.g.) two EA attached to two different charts with different magic number for each EA.

If I trade EURUSD with 1.0 volume and after a while a second order is send out with 1.0 volume. Now I see in MT5 EURUSD 2.0 volume. Is it also possible to display the two different trades in two lines, sparated by the magic number?

I know, the average counts at the end not the single trade, but I would like to see each new trade in one line to get a better overview.

 Is there any setting/parameter in MT5? 

Thanks in advance

FX_TA 

MetaTrader 5 Goes on the Ukrainian Exchange's List of Certified Brokerage Systems

Discussion of article "Interview with Ilnur Khasanov (ATC 2011)"

$
0
0

New article Interview with Ilnur Khasanov (ATC 2011) is published:

The Expert Advisor of Ilnur Khasanov (aharata) is holding its place in our TOP-10 chart of the Automated Trading Championship 2011 participants from the third week already, though Ilnur's acquaintance with Forex has started only a year ago. The idea that forms the basis of the Expert Advisor is simple but the trading robot contains self-optimization elements. Perhaps, that is the key to its survival? Besides, the author had to change the Expert Advisor planned to be submitted for the Championship...

Author: Automated-Trading


using a functioan of a class into an expert

$
0
0
VincentX:

Does expert found this file?

Can you attach the files?

hi dear friend.

i attached files and  dont know how use a function of a class into an EA.

thank you

Indicators: Camarilla Equation

$
0
0

can you help me about manually input your indicator sir ? like manually input high price and low price

thank you



Expert Advisors: MQL5 Wizard - Trade Signals Based on Price Crossover with Moving Average Indicator

$
0
0

hello,

 why when I use the EA it open immediately a position and not wait for the first crossover?

How can fix it?

 

I want wait first crossover to open a new position 

Problem with First Order at market without signals

$
0
0

hello,

 

I'm trying to use this EA http://www.mql5.com/en/forum/2910/page1 

Why when I use the EA it open immediately a position and not wait for the first crossover?

 

How can fix it?

 

I want wait first crossover to open a new position 

 

Can you help me with the code? 

 

 

Discussion of article "How to Subscribe to Trading Signals"

$
0
0
pato1646:

signals only work in mt5 platform? right? how I can get in my mt4 to receive signals from another platform mt4 (from http://www.mql5.com/en/signals/mt4), or  from mt5 signals ( http://www.mql5.com/en/signals/mt5 ), my broker only have mt4 tecnology ....  thanks in advance!
Now signal also works in MT4. Please read this http://www.mql5.com/en/forum/8567 and this in mql4 forum http://forum.mql4.com/52254 . Ask your broker to update it's MT4.
Viewing all 75046 articles
Browse latest View live