Page 54 of 55 FirstFirst ... 4 44 52 53 54 55 LastLast
Results 531 to 540 of 546
Like Tree74Likes

Requests and Raw Ideas

This is a discussion on Requests and Raw Ideas within the General Discussion forums, part of the Trading Forum category; In the previous article " Creating an EA that works automatically (Part 03): New functions " we finished covering the ...

      
   
  1. #531
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,459
    Blog Entries
    1678

    Creating an EA that works automatically (Part 04): Manual triggers (I)

    Requests and Raw Ideas-autotrader0403.png


    In the previous article "Creating an EA that works automatically (Part 03): New functions" we finished covering the orders system. If you haven't read it or do not completely understand its contents, I suggest that you go back to that article. Here we will no longer discuss the order system. We will proceed to other things, in particular, to triggers.
    more...
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

  2. #532
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,459
    Blog Entries
    1678

    Creating an EA that works automatically (Part 05): Manual triggers (II)

    Requests and Raw Ideas-terminalinfo0403.png


    In the previous article entitled Creating an EA that works automatically (Part 04): Manual triggers (I) I have shown how, with a bit of programming, to send market orders and to place pending orders using a combination of keys and mouse.
    Well, to make the use of our EA in the manual mode more comfortable, we need to do a few things. This work is simple and easy for programmers, so we can get straight to the point. Namely, we will create lines indicating the location of order limits for the orders that we send to the trading server.
    more...
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

  3. #533
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,459
    Blog Entries
    1678

    Creating an EA that works automatically (Part 07): Account types (II)

    In the previous article Creating an EA that works automatically (Part 06): Account types (I), we started developing a way to ensure that the automated EA works correctly and within its intended purpose. In that article, we created the C_Manager class, which acts as an administrator, so that in case of strange or incorrect EA behavior the EA will be removed from the chart.
    more...
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

  4. #534
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,459
    Blog Entries
    1678

    Creating an EA that works automatically (Part 08): OnTradeTransaction

    Requests and Raw Ideas-eaflow0304.png


    In previous articles: Creating an EA that works automatically (Part 06): Account types (I) and Creating an EA that works automatically (Part 07): Account types (II), we were focusing on the importance of being careful when designing an EA that trades automatically.

    Before we can really understand how the EA code for automation should work, we need to understand how it interacts with the trade server.
    more...
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

  5. #535
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,459
    Blog Entries
    1678

    Creating an EA that works automatically (Part 09): Automation (I)

    In the previous article Creating an EA that works automatically (Part 08): OnTradeTransaction, it was explained how we can take advantage of the MetaTrader 5 platform by using a rather interesting event handling function. We will start now with building the first level of automation in our EA.
    more...
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

  6. #536
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,459
    Blog Entries
    1678

    Creating an EA that works automatically (Part 10): Automation (II)

    Requests and Raw Ideas-0017.png


    In a previous article Creating an EA that works automatically (Part 9): Automation (I), we looked at how to create a breakeven and trailing stop system that uses two different modes. One of them uses a stop line on OCO positions, while the other uses a pending order as a stop level.
    more...
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

  7. #537
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,459
    Blog Entries
    1678

    Creating an EA that works automatically (Part 11): Automation (III)

    Requests and Raw Ideas-0018.png


    In the previous article "Creating an EA that works automatically (Part 10): Automation (II)", we looked at a way to add EA operation schedule control. While the entire EA system has been built to prioritize autonomy, before moving on to the last phase where we will get a 100% automated EA, we need to make some minor changes to the code.
    more...
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

  8. #538
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,459
    Blog Entries
    1678

    Creating an EA that works automatically (Part 12): Automation (IV)

    In the previous article Creating an EA that works automatically (Part 11): Automation (III), we looked at how we can create a robust system, minimizing the failures and loopholes that can affect a program.
    In the previous article, I raised this question and left it for you to understand where this flaw was, and how it could cause problems, so that we could not automate our EA at 100% yet. Did you manage to understand where the failure was and how it could have been triggered? Well, if the answer is no, it is ok.
    So, to understand what it's about, let's divide things into topics. I think it will be easier for you to notice something seemingly unimportant that can cause you great annoyances.
    more...
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

  9. #539
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,459
    Blog Entries
    1678

    Creating an EA that works automatically (Part 13): Automation (V)

    Requests and Raw Ideas-0034_au.png


    Now that we have finished creating the basic skeleton, we can finally automate the EA to make it operate 100% automatically while following the operational rules that we have defined. The purpose of the article is not to build an operational model, but to show and prepare you to use the system proposed here, by turning a manual Expert Advisor into an automated one.
    more...
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

  10. #540
    member mql5's Avatar
    Join Date
    May 2013
    Posts
    2,459
    Blog Entries
    1678

    Creating an EA that works automatically (Part 14): Automation (VI)

    Requests and Raw Ideas-0021111.png


    In the previous article Creating an EA that works automatically (Part 13): Automation (V), I explained how a trader even without any programming knowledge can create the required basis for converting a trading system into an automated EA. This is what we have been doing throughout this series of articles. These concepts and information apply to any EA including any you create. In this article, we will consider one of the many ways to accomplish this task.
    more...
    Metatrader 5 / Metatrader 4 for MQL5 / MQL4 articles preview preview
    Trading blogs || My blog

Page 54 of 55 FirstFirst ... 4 44 52 53 54 55 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •