Free MT5 Fibonacci Expert Advisor Programming Tutorial - mql5 Lesson

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 พ.ย. 2024

ความคิดเห็น • 48

  • @ashleyvenasio7398
    @ashleyvenasio7398 2 ปีที่แล้ว +1

    You're doing a great work my brother,I am personally growing 🙏🙏

  • @Smeg120
    @Smeg120 2 ปีที่แล้ว +1

    Zie gevinnt meine Subscription Freund (sorry for my German of 30 years without practice). Nice job, you came up with solutions on the flow, live and i know it's very very hard coz sometimes it takes hours and days to solve something.

    •  2 ปีที่แล้ว +1

      I can understand your German so it's fine I think :D Thank you :)

  • @tylerquest-b6u
    @tylerquest-b6u 2 ปีที่แล้ว +2

    great work Rene ..you are an insipiration to many

  • @leoclopezzz
    @leoclopezzz 2 ปีที่แล้ว +1

    Nice work brother! It's really help me to understanding and programming my code trading.

  • @javiercardona3492
    @javiercardona3492 ปีที่แล้ว

    Nice tutorial, thanks for sharing. I believe there is an error in your implementation. You are calculating the trend by comparing the open and close prices in the previous timeframe (in your example, 1day). Instead of that, I believe you should compute the trend by comparing the time at which the high and low occur within the timeframe. Otherwise you could get the trend wrong. Probably it makes no difference in profitability, though...
    😉

  • @PROPHETEMCHAUKE
    @PROPHETEMCHAUKE 2 ปีที่แล้ว +1

    Thank you very much Rene for such great content

  • @moHAMMED-pd4el
    @moHAMMED-pd4el 2 หลายเดือนก่อน

    Thank you for your video, I have a question , this script works on many currencies at the same time, I mean if added to eur usd and usd jpy....etc.

  • @emekaokpoko9090
    @emekaokpoko9090 2 ปีที่แล้ว

    Thank you so much for building team of EA builders.

  • @fbcckenya5937
    @fbcckenya5937 6 หลายเดือนก่อน

    hello sir there someone who asking me to make him a robot that uses boom and crash spike detector what kind of indicator should use to achieve this or how do i go about it

  • @AlphaCene
    @AlphaCene ปีที่แล้ว

    Hey, i have 2 error , 'int'semicolon expected and 'if'-expressions are not allowed on a global scope????

  • @Island_Algorithms
    @Island_Algorithms 2 ปีที่แล้ว +1

    Legend, thank you!

  • @sorooshb007
    @sorooshb007 2 ปีที่แล้ว

    Hi, great video, awesome explanations!! Little question at 20:44 in the video, you precise that when the candle has a big wick(shadow) and a small body (Open to Close) there is no point for implementing the Fib. Which makes total sense. But in the coding where or how did you solved it, to stop the EA to place the Fib? Thank you very much super appreciated.

    •  2 ปีที่แล้ว +1

      Hey, I am not sure if I added the code for this. But you could add it yourself. You can calculate the percentage of the body using the iOpen, iClose, iHigh and iLow function. Maybe you can figure it out :)

    • @sorooshb007
      @sorooshb007 2 ปีที่แล้ว

      @ Great thank you for your reply and the details on how to do it. I will try to figure it out even tho I'm a newbie. As a next TH-cam video it can be great to show us, because there is not that many videos on how it's properly done. Thanks again!!!

  • @StandforChisi-kr6zm
    @StandforChisi-kr6zm 11 หลายเดือนก่อน

    Hi Rene, i hope you're well, i've tried copying your code but no matter how i double check it's bringing errors

  • @alejandrovalsecatraderfore8311
    @alejandrovalsecatraderfore8311 2 ปีที่แล้ว +1

    and if I want to use it only from 7 to 11 Ny? what would the code look like?

    •  2 ปีที่แล้ว +2

      Do you want to implement a time filter? Have a look at TimeCurrent() and the MqlDateTime struct. I also show how to do this in the MT5 Masterclass: en.bmtrading.de/mt5-masterclass/

  • @StandforChisi-kr6zm
    @StandforChisi-kr6zm 11 หลายเดือนก่อน

    I have been trying to copy this EA but it always brings an Error, i use MT5, if anyone has successfully done it please send me the code

  • @djaarif419
    @djaarif419 2 ปีที่แล้ว

    For mt5 How to make horizontal ray lines with price same as trading view can you help us with this

    •  2 ปีที่แล้ว

      Hey, you can use the ObjectCreate function for it and create OBJ_HLINE objects. Maybe I can show something like this on the channel in the future.

  • @GuillermoLinares1967
    @GuillermoLinares1967 2 ปีที่แล้ว

    congratulations for all your videos
    do you know how to make a robot that can read the buffers of the indicators ' ideally it should read from 2 indicators, one that makes a filter and the other that confirms the operation.

    •  2 ปีที่แล้ว

      Thanks :) Sure that can be done using the iCustom function. Check out my supertrend tutorial where I show the exact process. You can find the first part here: th-cam.com/video/acaqusyaeXc/w-d-xo.html

    •  2 ปีที่แล้ว +1

      If you are using multiple indicators then you can just create different handles for them. The conditions can be combined using if statements and the && operator.

    • @GuillermoLinares1967
      @GuillermoLinares1967 2 ปีที่แล้ว

      @ thanks sir

  • @1rodne
    @1rodne 8 หลายเดือนก่อน

    hi Rene i have copied this EA and coded it, im having a problem its opening alot of pending orders?

    •  8 หลายเดือนก่อน +1

      maybe you have to check the code again. make sure you copied everything as it is in the video. then you should see the same results.

    • @1rodne
      @1rodne 7 หลายเดือนก่อน

      Thanks master I got it right on the expiration line I used * instead of + thank you very much

  • @leoclopezzz
    @leoclopezzz 2 ปีที่แล้ว

    René, could you help me to write an EA with trading in percentual variations like Shorts positions in +1%, +2% and long positions in -1%, -2% from previus day's closes, do you understand?

    •  2 ปีที่แล้ว

      Hey that is really easy. You just have to calculate the entry levels based on the previous day's close using the iClose(_Symbol,PERIOD_D1,1) function. Then you can place pending orders at these levels. Just watch some of the tutorials on this channel and you will get it done :)

  • @fadellubbad101
    @fadellubbad101 2 ปีที่แล้ว

    Good work but you fast i can't understand last part how can make older and change fib levels
    Please

    •  2 ปีที่แล้ว

      Hey, i am sorry. Maybe you will get it if you rewatch that part? You can change the fibo levels by simple changing the mathematical calculation for it. It is a different factor.

  • @kgothatsobojosi2377
    @kgothatsobojosi2377 2 ปีที่แล้ว

    Rene can I ask how do you create a function for re entry if price hit sl maybe you want to re enter 3times for every trade you take on every signal you get

    •  2 ปีที่แล้ว

      Hey, there is no single function for this I think. You would have to integrate it into the structure of your program. I always recommend to learn (and understand) the programming basics. Then you are able to change the programs as you like. My MT5 Masterclass is a great way to start if you want to take this seriously: en.bmtrading.de/mt5-masterclass/

  • @najafhaider5047
    @najafhaider5047 2 ปีที่แล้ว +1

    How can I contact you ?

    •  2 ปีที่แล้ว

      Hey, the best way is in the TH-cam comments :)

    • @tylerquest-b6u
      @tylerquest-b6u 2 ปีที่แล้ว +1

      @ i've been trying to program an mql4 system that draws supply and demand zones in the chart but i've no idea on how to go about it am a beginner please

    •  2 ปีที่แล้ว

      ​@@tylerquest-b6u That is indeed a rather complex task. The most difficult question is: Can you define suply and demand zones 100% objective so that a computer program is able to identify them? In most cases it depends on the trader where he would draw a zone.

  • @bookssums
    @bookssums 2 ปีที่แล้ว

    this is phenominal

  • @Island_Algorithms
    @Island_Algorithms 2 ปีที่แล้ว

    Hi Rene, do you have an email address I could message you on please?

    •  2 ปีที่แล้ว +1

      Hey, the best way to reach me is in the TH-cam comments :)

    • @Island_Algorithms
      @Island_Algorithms 2 ปีที่แล้ว

      @ Sure no problem. It was really just to get your opinion on the this EA - th-cam.com/video/u7ayVO5ogeE/w-d-xo.html . Im not even sure if its legit or not but it seems very profitable and runs live day and night. it says it runs on a new candle on the 5 min chart. Would something like this be easy to replicate?

    •  2 ปีที่แล้ว +1

      ​@@Island_Algorithms Phu kinda hard to say if it is legit or not... But if you can follow it live 24/7 you can follow it for like a month to see how it is working. Or the trade could provide some kind of verified myfxbook account. That would be cool, too. But in the end it is always a blackbox unless he explains how it works. Rebuilding such a programs without seeing the source code or a explanation of the algorithm is nearly impossible.

    • @Island_Algorithms
      @Island_Algorithms 2 ปีที่แล้ว

      @ Yeah I agree. I have asked but as it is for sale they are very reluctant to give any form of verification regarding strategy or stats. They seem to always say you can just watch it live, this can be modified though. thanks for your response though :)

    •  2 ปีที่แล้ว +1

      Yeah most people are not really 100% transparent with their strategies which I can understand somehow. But it makes it really hard to filter the scams. In the internet you can fake almost everything :D