Introduction - Write your own expert for MT4 - MA Cross

Поделиться
HTML-код
  • Опубликовано: 18 ноя 2024

Комментарии • 47

  • @donbangert
    @donbangert 2 года назад +1

    When I'm trying to figure out how to do something in mql4 or 5 and Google shows one of your videos in my search returns I head there first!

    • @OrchardForex
      @OrchardForex  2 года назад +2

      That's good to hear. Thank you

  • @rrdailyvlogs
    @rrdailyvlogs 2 года назад

    Wow what an acNice tutorialevent! Best of luck for the rest of your future, I’m looking forward to being able to invest when I turn 21 in November!

  • @andrewboey4838
    @andrewboey4838 Год назад

    Thank you. Very detailed and straight forward teaching 😍👍🏽

  • @prospervirimai330
    @prospervirimai330 Год назад

    I followed your cod but lm facing 2 problems unexpected end of program and unbalanced parentheses can u help me please to send a copy and l can just paste it without errors

  • @safiyamurray9050
    @safiyamurray9050 Год назад

    Are we able to send donations to you because the information you provide in invaluable! Please let us know. Thank you so much for your detailed explanations!

    • @OrchardForex
      @OrchardForex  Год назад

      As much as I like receiving money, it is not necessary. Thank you.

  • @viniciocoelho3538
    @viniciocoelho3538 Год назад

    Do you have a class on how to plot 2 EMA on the chart and then make a color change according to their position? Thanks

    • @OrchardForex
      @OrchardForex  Год назад

      Not a class but my very first video (I cringe now when I see it) was 2 ma with colour change for MT4 ruclips.net/video/3sLrhJN0_pA/видео.html and for MT5 ruclips.net/video/ki-ShYKppXI/видео.html

  • @heneralluna7899
    @heneralluna7899 2 года назад

    This ea base on Bollinger bands and stochastic
    Bollinger is filter of the trend
    Stochastic is the execution signal
    Buy signal
    1. If the price is above middle of boll
    2. If stoch cross above 70lvl make it buy (1order in a row) open buy in closed candle confirmation in above Bollinger bands, closed candle make sure is 5pips away from middle band if above no order buy
    Donot trade order when the price close above upper or lower band
    Trade order when the price close away 5pips
    Vise versa for sell....
    Exit strategy
    Exit inloss close in opposite signal

  • @LEFTURNInc
    @LEFTURNInc 2 года назад

    Thank you very much! Awesome video!

  • @jafxtradinginstitute6395
    @jafxtradinginstitute6395 2 года назад

    A 3 period moving average indicator better to for Trend and entries .

  • @albertosilva1563
    @albertosilva1563 Год назад

    Great video! I am trying to write a code to move the STOP LOSS to Breakeven after I am up at least 10 PIPS.. would you be so kind to help me?

    • @OrchardForex
      @OrchardForex  Год назад

      Same as a trailing stop but only do it once

  • @heneralluna7899
    @heneralluna7899 2 года назад

    Sir i have strategy that i use for scalping this is profitable strategy but so hard to wait and seating to see the chart thats why i want this to make automated

  • @markgavin1856
    @markgavin1856 2 года назад

    Love this video thx, I feel challenged to learn. Does much change to write this for MT5??

    • @OrchardForex
      @OrchardForex  2 года назад

      Like I said in the video, there is a link in the description to the MT5 version

  • @kankrz
    @kankrz Год назад

    Cool !

  • @mixai7
    @mixai7 2 года назад

    hello. can you make zigzag entry. if current zigzag leg higher than previous leg, buy and current zigzag leg lower than previous leg, sell.

    • @OrchardForex
      @OrchardForex  2 года назад +1

      This is a custom development request. I don't see value in a video for this.

  • @youtraders
    @youtraders 2 года назад

    Not working my console terminal please source code

  • @okashaabdulrasheed7956
    @okashaabdulrasheed7956 2 года назад

    Thank you sir for your wonderful tutorials , sir I have 2 mt5 expert which Are really profitable for me but I want to combine them as one expert, Please which command should I gave them to work perfectly irrespective of the other. Hint Please Thanks

    • @OrchardForex
      @OrchardForex  2 года назад

      You will have to get them rewritten to a single EA

    • @okashaabdulrasheed7956
      @okashaabdulrasheed7956 2 года назад

      @@OrchardForex I did that but the command I gave was not working I use ' if else if ' statement . can you suggest a better command for me please Thanks you Sir

    • @OrchardForex
      @OrchardForex  2 года назад

      @@okashaabdulrasheed7956 There is no command. You have to rewrite them as one ea.

    • @okashaabdulrasheed7956
      @okashaabdulrasheed7956 2 года назад +1

      @@OrchardForex Ok sir Thanks

    • @jafxtradinginstitute6395
      @jafxtradinginstitute6395 2 года назад

      How can I test them ?
      Mine sharing?

  • @BlueMoney
    @BlueMoney 2 года назад

    Dear Sir,
    I think this Part has missing code @ 19:30 of the video
    void OpenTrade ( ENUM_ORDER_TYPE type) {
    double price;
    double sl;
    double tp;
    if ( type == ORDER_TYPE_BUY ) {
    price = Ask;
    sl = price + StopLoss;
    tp = price - TakeProfit;
    }
    else {
    price = Bid;
    sl = price - StopLoss;
    tp = price + TakeProfit;
    }
    Thank You
    Regards

    • @BlueMoney
      @BlueMoney 2 года назад

      because the code is still shows error may i send you the code i wrote with you to check please?

    • @OrchardForex
      @OrchardForex  2 года назад

      This looks fine, nothing missing.

    • @OrchardForex
      @OrchardForex  2 года назад +1

      @@BlueMoney Why don't you just download the code from the link on the website.

  • @momomadi2
    @momomadi2 Год назад

    hello -- why dont u use--- if (Volume[0]==1) -- instead of IsNewBar Function

    • @OrchardForex
      @OrchardForex  Год назад +1

      Spoken like someone who only uses the strategy tester. Because it's unreliable in real life.

    • @momomadi2
      @momomadi2 Год назад

      @@OrchardForex that's correct . Thanks for the replay

    • @momomadi2
      @momomadi2 Год назад

      @@OrchardForex hello again - im very new to EA stuff - can u give some explanation for why its unreliable in real life? - if that's ok for you

    • @OrchardForex
      @OrchardForex  Год назад +1

      @@momomadi2 vol = 1 in strategy tester because you are the only person using the platform. In the real world there are others and vol could go to > 1 before you get the first tick. But if you prefer to use your own method then go ahead.

    • @momomadi2
      @momomadi2 Год назад

      @@OrchardForex makes sense - now i understand thanks bro - im already implemented ur NewBar technique on my EAs

  • @idrisifelana974
    @idrisifelana974 2 года назад

    Hi, I my this video,. pls, I have an indicator that I want it in an EA, can you be of help to turn the indicator to EA

    • @OrchardForex
      @OrchardForex  2 года назад

      Maybe, if you can find one of my videos similar to your indicator you can copy it, but not if you want custom work.

    • @idrisifelana974
      @idrisifelana974 2 года назад

      @@OrchardForex can i get ur whats number ot ur facebook account?

    • @idrisifelana974
      @idrisifelana974 2 года назад

      @@OrchardForex i have this MACD FIREBAS indicator that have just the fasthalf - 12 length -32 and slowhalf length as input, Can u make it an EA?

    • @OrchardForex
      @OrchardForex  2 года назад

      @@idrisifelana974 If you are looking for custome EA coding try Fiverr.

    • @idrisifelana974
      @idrisifelana974 2 года назад

      @@OrchardForex ok, but am having problem with the code, i tried to recode the EA, but am getting 9 error message. can you give me a link so that i can attached it for to see n help to correct the errors.

  • @heneralluna7899
    @heneralluna7899 2 года назад

    Hope you notice me sir

    • @OrchardForex
      @OrchardForex  2 года назад

      To have a custom EA written you could try Fiverr.