Discussion of article "MQL5 Wizard: New Version" - page 3

 
sergeev:
what is your specific task ?
I would like to be able to trade 3 instruments at once in one EA. I am trying to realise this by my own efforts, but in many moments it turns out not very beautiful, because of inexperience in programming. If I could offer a solution, I probably would not use the wizard, if there is a class that implements everything for trading on one instrument, why can't I create 3 objects of this class and trade on 3 instruments?
 
beginner:
why can't you create 3 objects of this class and trade on 3 instruments?
Here is the answer to your question. You can. Only "manually".
 
uncleVic:

1. Price level to execute a deal - parameter for more "flexible" market entry. It defines the margin from the current market price (in 2/4 digit points). For example, the price has broken some level, but "we know" that after the trial breakout should be followed by a pullback to the level and only after that further movement. We set the value of the parameter to less than zero. Instead of entering the runok at the current price, we get an entry by limit order (if we guessed the pullback). If the value of the parameter is positive, set a stop order (it may be necessary to confirm the "bounce" signal).

2. Expiration of pending orders (in bars) - the parameter defines the time of "life" of a pending order in bars. For example, if we work on a 15-minute interval, the parameter value is 4. If the order does not work, it will be automatically cancelled in an hour. This is useful in real trading.

Wait! Do I have the ability to set pending orders in the Wizard? In general, is there a more complete description (or is it planned) of how theExpert Advisors generated by the Wizard work? Or do I need to get into the signal programs and figure it out for myself? I mean, these two parameters automatically appear in the Expert Advisor, but whether and how they will be used is unclear!

 
Erm955:

1. Yes.

2. No description yet.

 

I would like to see some SignalCustom.mqh sample. I'm having problems to understand how I should use it. I'm trying to learn how to add my own indicators in MQL5 Wizard.

 

tsaktuo 

MQL5 Wizard: Creating Expert Advisors without Programming
  • 2011.01.11
  • MetaQuotes Software Corp.
  • www.mql5.com
Do you want to try out a trading strategy while wasting no time for programming? In MQL5 Wizard you can simply select the type of trading signals, add modules of trailing positions and money management - and your work is done! Create your own implementations of modules or order them via the Jobs service - and combine your new modules with existing ones.
 
och:

Hi Victor,

Seems nice, but I guess I found an error in SignalStoch.mqh : 

 
Thank you. Fixed.
 
tsaktuo:

I would like to see some SignalCustom.mqh sample. I'm having problems to understand how I should use it. I'm trying to learn how to add my own indicators in MQL5 Wizard.

 

tsaktuo 

Don't worry. This sample will be published but a bit later. Approximately for a two weeks.
 
uncleVic:
Thank you. Fixed.

uncleVic,

You're welcome, but can you please :

  1. Explain how CompareMaps is working (SignalStoch.mqh). I have to admint I do not understand that proc.
  2. I don't understand neither the call to IS_PATTERN_USAGE define in ExpertSignal.mqh

Regards,

Olivier 

 
och:
  1. Explain how CompareMaps is working (SignalStoch.mqh). I have to admint I do not understand that proc.
  2. I don't understand neither the call to IS_PATTERN_USAGE define in ExpertSignal.mqh

1. My English is too bad so that I could explain it. Will be written, in which the details of the algorithms.   (With Google Translator)

2. Macro evaluates to true if the value of a specified bit in a variable m_patterns_usage equals 1, otherwise is false.

                    (With Google Translator)

P.S. If you are content with my Google-English, answer the other questions.


 
Could you please tell me where I can read how EXPERT MACD Expert Advisor works on MT5 terminal?