
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
I will make a manual, but a short one. ...................
And a manual for adding your own functionality (indicators, log elements, states, etc.).
Ideal (but not easy) variant: to make all functional elements "easily attachable", like plugins, so that they multiply and multiply in the codebase like mushrooms ... :)
--
Cool thing you've done, Igor. Thank you! I've been playing with it all evening.
I haven't really got into the code yet, but I'm planning to do it this weekend. Very curious to understand in detail how some features are implemented.
At a quick look at the code, the impression is very pleasant.
Blocks are written in an elementary way! If MQL had a mechanism similar to get_declared_classes, class_exists and is_subclass_of, the whole installation of new functionality would be just an enclode/add file of a new class (a descendant of one of the base classes).
And if you do code insertion in visual mode, the new block would add itself. Recompiling EA on the fly and picking up new "generated" includes has already been solved. This is how the update of input parameters of blocks for the tester is implemented now.
In the description for codebase it is the same scheme of 4 blocks. Only the value 300 in the operation block is ">". The schematic file is in the archive, unzip it to the folder
C:\Documents and Settings\All Users\Application Data\MetaQuotes\Terminal\Common\.
(the path may be different, it is better to search for the fatpanel.dat file and replace it)
While the new version is being prepared, I will show a run of the same strategy from 2005. Testing mode "every tick". Experiments with trailing stop:
The diagram shows all parameters of the strategy and its principle. No reinvestments. A version with additional blocks will be published soon.
In this way the volume of the position is gained. Constantly refilled portions "by feel" eventually finds a local extremum on bid. And if you limit the opening of no more than 1 position in one direction, then more favourable opening moments are missed and the strategy fails. It is not difficult to add this restriction: +3 blocks for each direction. AND and IS_BUY(or IS_SELL) + NOT
Version 0.2 doesn't want to work. How do I get it to work?
This problem was in one of the recent builds of the terminal.
https://www.mql5.com/ru/forum/1111/page232
If the terminal is updated to the latest version (where it is fixed), you need to recompile the indicator (in the folder mql5/indicators/fatpanel/ ) and the Expert Advisor (mql5/experts/fatpanel/).