• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Search results

  1. 9nix6

    help me about trailing stop

    You can go through my code or use the logic: https://github.com/9nix6/Median-and-Turbo-Renko-indicator-bundle/blob/master/Include/AZ-INVEST/SDK/TradeManager.mqh The trailing stop is used in the "Run" section of the EA via the function presented below: tradeManager.Manage(_ticket...
  2. 9nix6

    Help programmer

    You can contact me as well via PM or just port your EA logic and requirements here. This way we can all give you price quotes and you can choose.
  3. 9nix6

    (ASK) Cara merubah chart generator agar tidak mulai dari awal

    Hi, You would need to store the information on the last completed bar plus the last processed M1 bar. Once you have this information, you can resume creating the range bars at the point where you left off. However, this is still not the ideal solution since MT4 does not store tick data. You will...
  4. 9nix6

    Question [HELP] Konversi mq4 ke mq5

    In most cases, you can easily convert from MQL4 to MQL5. The current version of MQL5 includes most of the MLQ4 function equivalents. The most important change between MQL4 and 5 is in the way time and price series are indexed. So ArraySetAsSeries is the function that will be your best friend...
  5. 9nix6

    tanya : warning : implicit conversion from 'number' to 'string'

    This means that you are assigning a numeric value to a string. The message is there to inform you that there may be a bug in your code. If you are doing this intentionally, you need to cast the number to a string. This can be done like so: ArrHigh =...
  6. 9nix6

    Hi, You can use my Renko EAs which are open source. The source code is here...

    Hi, You can use my Renko EAs which are open source. The source code is here: https://github.com/9nix6/Median-and-Turbo-Renko-indicator-bundle The EA code is located in the Experts folder. You can easily modify the code to suit your needs.
Back
Top