
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
How do you apply your method to the championship? Rules: One expert and one graph. Will the organisers allow spies on other charts?
You are misinterpreting the rules.
III. Expert Advisors (Expert Advisors) for MetaTrader 5
...
3. Each Expert Advisor is launched on a separate terminal from one account and only on one chart selected by the Participant. 3.
4. Multicurrency Expert Advisors can use any currency pair from the 12 available currency pairs.
...
This means that the Expert Advisor will be attached to one chart, specifically to the one whose symbol and period the Participant specifies in his profile.
But nobody forbids trading and getting information from any chart, as well as automatically opening the necessary number of charts for your needs.
You are alone on the terminal and do not disturb anyone.
How do you apply your method to the championship? Rules: One expert and one graph. Will the organisers allow to run spies on other charts?
New article Parallel Calculations in MetaTrader 5 is published:
Author: Andrew
A single pass by the Expert Advisor starts from the 0th bar.
FindPrognoze(_Symbol,CurPattern,0,HistoryLen,ExistsPrognozeLen,
Prognoze,MaxRating,HistPatternBarStart);
and assignments are given to indicators not from 0, but from PatternLen, i.e. 24 hours ago on a minute TF
int handle=iCustom(s,_Period,path+"i-Thread",
GlobalVarPrefix,t,_Symbol,PatternLen,
PatternLen+t*HistPartLen,HistPartLenPlus);
The solutions end up being different.
hi every one.
i am trying to develop a backtest platform using python .(an integration between python and meta5) .
in one of its steps , i need to know more about that how cores(workers) in optimization phase complete a process and what is the exact flow of the contribution between cores.
is there any useful doc about this? c
thanks! c
Thanks for the cool article, and especially for the mini lesson on linking EA and indicator via global variables.
My EA-indicator link requires transferring a decent amount of data to the EA, I used to do it through indicator buffers, but your method is more universal and simple, and also less load the processor with polling of indicator buffers.
I just did it, everything works perfectly.
Also, the Expert Advisor is multi-currency and your article helped me to understand how to distribute the computational load.