Published products

Most rated
Hello everyone.  I want to tell you a little bit about this panel for trading in the financial foreign exchange market. The panel is written in the MQL4 programming language and is designed to help open market orders for certain positions. It works with both regular and pending orders. That is, it opens buy and sell orders, such as Buy, Sell, BuyLimit, SellLimit, BuyStop, SellStop. It also opens a network of pending orders and, including grid orders, that is, both limit pending orders and sto
This EA is a continuation of the first one, but it opens many times more orders. Why? Because I added trend search control to him using pending orders. That is, he remembers in which direction the price is moving and where and why he opened the last order... and so this advisor is always moving in the right direction. Its only disadvantage is if you don't set it up correctly and make it work with these settings. He also considers the average of the current price and comes to some conclusions and
Here, this advisor is missing magic numbers. Of a kind, this is a disadvantage, since it will not be possible open two or more Expert Advisors in the same terminal, as they will interfere with each other. But this will not happen on different terminals. They are in the code itself, since the ADVISOR works and uses them in its logic exclusively magical order numbers. That is , it is part of the logic of the work of advisers and without it, no way. When entering the market, the adviser uses a larg
MartinZ
Iurii Kuksov
This is an ordinary adviser working on the martingale system. Places orders depending on the intersection of the average price. Here it must be said that the closing price with a profit after the opening of the second and subsequent orders, for example, for sale, is measured in points and does not count. That is, you yourself will have to run the Expert Advisor in the strategy tester and prepare its settings properly for a particular currency pair, etc. of assets provided to you by your broker.
The ADVISOR works using the martingale system. He opens deals according to the Moving Average schedule. To open, it uses PERIOD M15 and a different price calculation period and with a different shift. Here it must be said that the closing price with a profit after the opening of the second and subsequent orders, for example, for sale, is measured in points and does not count. That is, you yourself will have to run the Expert Advisor in the strategy tester and prepare its settings properly for a
This Expert Advisor is actually a martingale and works with trailing only for BUY orders with Magic1. For all other oders, trolling does not work. Depending on the EnteringMarket parameter, the EA will open orders less frequently or more often. It depends on the distance of the moving averages from each other and the greater this distance, the less often a buy order will be opened. The meaning of the strategy is simple: A purchase order is opened, and depending on how the price behaves, which we
The Breaking Trend ADVISOR opens the first position only to buy an order. Next, he looks at if the price goes to a loss, then at a certain loss distance he puts a pending Stop Order Sell for sale with an increased lot in order to cover the loss and fix the profit when closing buy and sell orders. And then the whole trade actually takes place with this logic. These are the settings of the advisor: -- LOT --- extern double lots                       = 0.2 ; - this parameter is responsible for t
This Expert Advisor uses Moving Average with certain parameters to open orders. He will always open the first deal to buy, but, with certain settings, he can only open deals to sell. To close orders, he uses a profit after which he will close all orders and start his work again. So far, it works as a Martingale and as a networker. extern double Lots                 = 0.20 ; - - From this parameter, which is the value of the currency at which you will to trade, the Expert Advisor begins its work.