Who can help you write an Expert Advisor with the opening of several orders at the same time with different volumes at a signal (reversal) of a trend indicator
Trend Star:
Who can help you write an Expert Advisor with the opening of several orders at the same time with different volumes at a signal (reversal) of a trend indicator, with the possibility of a double volume reversal!
......
Just to remind:
Coders (any coder) are coding for free:
- if it is interesting for them personally, or
- if it is interesting for many members of this forum.
and Freelance section should be used in most of the cases.

Trading applications for MetaTrader 5 to order
- www.mql5.com
It is a modification of our previous work AUM SHANTI V1.1. HEDGING feature is included in this modification. That is the only modification and all other features remain same. After this modification, we will have the name of the EA changed to AUM SHANTI HEDGER Same fuction as (Stop Limit order) within Mt5. The EA must be mq4 file. ( not a exe...

Вы упускаете торговые возможности:
- Бесплатные приложения для трейдинга
- 8 000+ сигналов для копирования
- Экономические новости для анализа финансовых рынков
Регистрация
Вход
Вы принимаете политику сайта и условия использования
Если у вас нет учетной записи, зарегистрируйтесь
Who can help you write an Expert Advisor with the opening of several orders at the same time with different volumes at a signal (reversal) of a trend indicator, with the possibility of a double volume reversal!
Like this one:
input int orders = 4 ; // total orders in the series
input bool buy = true ; // flag enabling / disabling purchases
input bool sell = false ; // flag enabling / disabling sales
input int magic = 100500 ; // unique number for orders opened by this script
double lot [] = { 0.01 , 0.01 , 0.01 , 0.01 }; // array of series order volumes
int tp [] = { 100 , 150 , 200 , 250 }; // array of take profits, in points
int sl [] = { 100 , 150 , 200 , 250 }; // array of stop losses, in points
input int slip = 2 ; // allowable slippage at the open, in points (for ECN, where market open is ignored)