Trade Trendlines Automatically Using This MT5 Expert Advisor (Easy mql5 Programming Lesson)

  Рет қаралды 12,217

René Balke - Fx Bot Trading

René Balke - Fx Bot Trading

Күн бұрын

Пікірлер: 52
@ykng71
@ykng71 2 ай бұрын
Rene, thanks a lot for the hard work preparing all these videos. Very informative and valuable. In the MT5 drawing tool kit, there is no polyline where we can just mouse click to start the first point and 2nd click to anchor the 2nd point and finally double click to complete the polyline. A tutorial video to code the polyline function will be helpful. Again thanks for these very valuable videos.
@sibonelo1000
@sibonelo1000 Ай бұрын
Rene, Thank you so much struggled with this for 5 months even with chatgpt I could not get it rights. I wanted to create a trendline closure. Thank you once again.
@Tchiffer
@Tchiffer 2 ай бұрын
Hi rene, i really appreciate you for this info your sharing for free. Thankbyou so much 💯
@PROPHETEMCHAUKE
@PROPHETEMCHAUKE 3 жыл бұрын
Great stuff as always Rene
@ytmish
@ytmish 3 жыл бұрын
Rene, are you aware of some function somewhere to calculate the volume needed, given the entry price and stop loss? a money management function that will take care of currency of the account, and that can take care of account margin?
@ReneBalke
@ReneBalke 3 жыл бұрын
Hey, sure that is no problem. You can calculate the lotsize using the ticksize, tickvalue and the lotstep: SymbolInfoDouble(_Symbol,SYMBOL_TRADE_TICK_SIZE) and SymbolInfoDouble(_Symbol,SYMBOL_TRADE_TICK_VALUE) and SymbolInfoDouble(_Symbol,SYMBOL_VOLUME_STEP) With these values you can take the distance from entry to sl and calculate the lotsize. I also demonstrate it in my complete course: en.bmtrading.de/mt5-masterclass/ You can also search in the mql5 forum. I think you will find a lot of functions for this :)
@-e5trnalakmedia252
@-e5trnalakmedia252 3 жыл бұрын
perfect as usual
@molefanekennymphahlele1367
@molefanekennymphahlele1367 2 жыл бұрын
Is it possible to do example of programming an alert indicator for specific time frame when the chart e.g create a low followed by high low then continues to form higher high, pulls back to retest the high low. The program must sound when market retest the high low or send an email. Meaning on a downtrend the chart will form a high then form a higher low followed by lower low, when chart retest higher low the program should sound or send an email
@EduardoMendesmaluzin
@EduardoMendesmaluzin 7 ай бұрын
Hello sir I made it. Thanks. One question is it possible to use horizontal line? Also Is it possible to execute the trade example 5 pips after the price hit the line and retrace. I want to make an ea when it hit yearly percentage levels but for confirmation it will hold I want some 5 pips retracement for confirmation. Example if the price is falling it hits the horizontal line then a buy stop order is automatically set 5 pips from the horizontal line.❤tks
@Solar546
@Solar546 2 ай бұрын
Excellent
@chakhua8676
@chakhua8676 2 жыл бұрын
Hi. Thanks so much Rene for your kind and hard work. I am very keen to learn the programming to write a profitable EA for myself due yo my clinic busy schedule so that I can't sit in front of the screen to trade but I have been told by so many manual trader that EA is useless and all losing money. Is it true? And is the profitable trading strategies will be taught in your masterclass rather than just merely programming for the standard strategy. Or all the strategy based on indicator or price action will be failed at some point so back to risk management to have more profit earned to cover the loss or avoiding account blown by SL?
@ReneBalke
@ReneBalke 2 жыл бұрын
Hey, automated trading using an EA is completely the same as manual trading. You can do the same things but better since it is faster and more precise. I am pretty sure you can make money with EAs because I do it :D The masterclass course is mainly designed to teach mql5 programming. I am not a trading guru and cannot give you the next "best strategy". But you will still write some EAs there that you can use for your testing and trading. You should have a look at the webpage I linked in the video description. On this page I explain everything :)
@ProtegeForexTrader
@ProtegeForexTrader Жыл бұрын
Excellent info, thanks
@MrSafeer1981
@MrSafeer1981 Жыл бұрын
hi rene, can you make a code which sends alert when trend line is touched ? instead of expert advisor?
@fancyvessel5701
@fancyvessel5701 2 жыл бұрын
Hi Rene.. I always love your video, to be honest u inspired my first EA a year ago! In my recent mql5 project, I wonder if we can find a price line that been touch or cross the most by candles wick in a range. Do you have any idea or clue how to do that? Thank you
@ReneBalke
@ReneBalke 2 жыл бұрын
You can take the code from this video I think. Only difference is that you take the candle wick. You can use the iHigh, iLow, iOpen and iClose function to figure it out.
@fancyvessel5701
@fancyvessel5701 2 жыл бұрын
Thanks for the reply, I will try to figure it out..
@eliasknaus7578
@eliasknaus7578 Жыл бұрын
Life saver. Thanks
@ReneBalke
@ReneBalke Жыл бұрын
I am glad you like it :)
@haikabatinok1326
@haikabatinok1326 2 жыл бұрын
Hi Professor #include
@is.wello-1
@is.wello-1 Жыл бұрын
Hello ,How do i put another object "string objName" to have two trendlines
@andrewmuchtar9286
@andrewmuchtar9286 2 жыл бұрын
Thank you Rene.
@Bhuwanbhattabizokium
@Bhuwanbhattabizokium 2 жыл бұрын
Hi rane. I am big fan of you. You are helping many people online. I am really thankful to you. I don't anything about coding. But i have a many trading plans and my original research work which i want to code and make a process execution terminal. I have few questions if you can answer them it would be great help to me because i am zero in coding. 1. Can we built expert advisor using mql5 language which is combination of different strategies? For example i have 5 different trading methods and want to build single ea for 5 different methods, whichever setup forms out of that 5 that order will get execute. 2. Can we build ea using mql5 which work work on particular level which we manually feed on the ea. When price hits particular level ea would looking for some particular setup in smaller time frame to form entries? 3. It is possible to use currency index like dollar index correlation to trade dollar pairs using mql5? If you can answer these questions it would be great help to me. I have few research work and want to automate for me. I just want to know, is mql5 language is powerful enko to simplify complex correlation easily.
@ReneBalke
@ReneBalke 2 жыл бұрын
Hey, thanks for the kind comment :) I will try to answer your questions: 1. Yes 2. Yes 3. Not really sure what this means. If you are asking for a multi currency EA, this is possible. Also you are able to receive any information from any third party API from the internet. So in the end it is possible either way.
@Bhuwanbhattabizokium
@Bhuwanbhattabizokium 2 жыл бұрын
@@ReneBalke thanks for your reply. I was looking for mql5 course on your youtube channel. Have you covered these types of lessons where ea will start looking for buy or sell opportunities after hitting certain price leve(which we add manually)
@ReneBalke
@ReneBalke 2 жыл бұрын
@@Bhuwanbhattabizokium Hey, I do not cover this exact task. But you will learn everything you need to write your own programs. What you just asked for is actually pretty easy and you should be able to write the code for this afterwards.
@Bhuwanbhattabizokium
@Bhuwanbhattabizokium 2 жыл бұрын
@@ReneBalke thanks, do you make ea for people on paid basis? Or where can I learn complete mql5 course basics to advance?
@ReneBalke
@ReneBalke 2 жыл бұрын
@@Bhuwanbhattabizokium No I do not offer any programming jobs I am sorry. But I have a complete course and you can find it here: en.bmtrading.de/mt5-masterclass/
@evandrooliveira4295
@evandrooliveira4295 2 жыл бұрын
Hi! Could you make a video with an example of how to save in a buffer the price value of a trendline object for each time position of the candles plotted on the chart? Thank you very much in advance! Hugs from Brazil.
@ReneBalke
@ReneBalke 2 жыл бұрын
Hugs are always appreciated!! :) I receive a lot of requestes lately and cannot handle all of them. That is why I always recommend to learn the basics. But maybe I can cover this in the future.
@Scr10w
@Scr10w Жыл бұрын
Hello Renee hope u well but I'm not sure why my ea is continuously placing buys/sell everytime the same trendline is hit.Its only supposed to open 1 trade at a given time right..
@lateboomer88
@lateboomer88 8 ай бұрын
Thank you very much.
@pitsotheartist3084
@pitsotheartist3084 2 жыл бұрын
Hello....if u can plis on the next toturial include parameters Fr sl n tp maybe throw in trailing stop ....been trying to do it I followed instructions from reference ....it prints [ invalid stops ] 😩😩...thnq
@ReneBalke
@ReneBalke 2 жыл бұрын
Hey, check out the other tutorials on this channel. SL and TP calculation is covered in many videos already. I even released a video about trailing stop implementation already ;)
@pitsotheartist3084
@pitsotheartist3084 2 жыл бұрын
@@ReneBalke thanx I managed to code them n they wrk just fine😋😋😂😂....am about to complete my EA thanx to you Man ....am glad I came across ur Channel ....even if the EA doesn't reach my full expectations...it won't matter ....I enjoyed the experience ....it was frustrating bt I GT the hang of it....it's been a month since I started programing....so thnk u....suggested the channel to few people ....❤️
@ReneBalke
@ReneBalke 2 жыл бұрын
Wow really glad to hear that :) keep up the good work and thanks for recommending the channel 🙌
@aymantawil6100
@aymantawil6100 2 жыл бұрын
Hi rene can you teach how to draw yrenone automatically
@ReneBalke
@ReneBalke 2 жыл бұрын
Hey what do you mean with yrenone?
@aymantawil6100
@aymantawil6100 2 жыл бұрын
@@ReneBalke trendlines I mean sorry
@ReneBalke
@ReneBalke 2 жыл бұрын
@@aymantawil6100 ah okay. You have to create a object. Maybe I can do this in some tutorial in the future :) If you want to learn mql5 programming you might as well want to check out my complete course: en.bmtrading.de/mt5-masterclass/
@samuraifx7749
@samuraifx7749 Жыл бұрын
how to refresh automatically the chart in mt5
@canigetsum
@canigetsum 3 жыл бұрын
Hi Rene you are well smashing content as always!! Is it possible to have or combine any of your previous EA;s with Fibonacci retracement. Is this at all a worthwhile stepping stone creating and incorporating EA's to your strategy
@ReneBalke
@ReneBalke 3 жыл бұрын
Hey, thanks :) You can pretty much combine everything you want in MetaTrader programming. That is why I love it so much. You are completely flexible to try out every strategy you want ;) For me it is kinda hard to make a tutorial for every idea in the comments. That is why I always recommend to learn the basics and then try to build own EAs.
@phongchuhong1669
@phongchuhong1669 10 ай бұрын
thank you very much
@pitsotheartist3084
@pitsotheartist3084 3 жыл бұрын
Hello, since I started watching this channel BC's I wanted Todo an EA of my own ....n this right here is the exact idea of my EA like what exactly what I want ...with a Lil bit of more of RSI n MA ....bt I copied the code as it is bt it doesn't doesn't show the price of object on the left top corner it prints 0.0 instead n below it it's the price of the 0 candle ....what could I HV done wrong ...plis assist ....C's I want to modify this EA ....
@ReneBalke
@ReneBalke 3 жыл бұрын
Hey, please make sure that you copy everything 100% as I show it in the video. Also please check if your trenline is "long enough" and has a value for the current bar. Otherwise you will not receive any value.
@pitsotheartist3084
@pitsotheartist3084 3 жыл бұрын
@@ReneBalke oryt i thank you
@________________sumatra
@________________sumatra 6 ай бұрын
*İyi anlatım*
@gastarfx_goat9249
@gastarfx_goat9249 2 жыл бұрын
Mql4 please
@________________sumatra
@________________sumatra 6 ай бұрын
Hugs from #torul
@AbdoBjn
@AbdoBjn 3 жыл бұрын
👍👍👍👍👍⭐⭐⭐⭐⭐
Donchian Channel Scalping Strategy | Free mql5 Programming Tutorial Part 1
28:43
René Balke - Fx Bot Trading
Рет қаралды 11 М.
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
It works #beatbox #tiktok
00:34
BeatboxJCOP
Рет қаралды 41 МЛН
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
“Train your Mind to Make Money!” - Rande Howell | Trading Psychology
49:50
Etienne Crete - Desire To TRADE
Рет қаралды 430 М.
Automate any Trailing Stop in MT5 Using This Simple Program | mql5 Programming Tutorial
52:59
Trade Previous Day High Low Breakouts Automatically Using MT5 Expert Advisor
38:54
René Balke - Fx Bot Trading
Рет қаралды 6 М.
CompTIA A+ Certification Video Course
3:50:46
PowerCert Animated Videos
Рет қаралды 7 МЛН
Create a Button in MT5 to Close All Open Positions | Easy mql5 EA Programming Tutorial
43:08
Options Trading for Beginners FULL FREE COURSE (4 Hours)
3:56:19
Invest with Henry
Рет қаралды 1,2 МЛН
Find High and Low Peaks with MQL Code
17:33
Orchard Forex
Рет қаралды 41 М.
How to run MQL4 or MQL5 code only one time for each bar
19:20
Orchard Forex
Рет қаралды 10 М.
Trading Time Filter Programming Tutorial for MetaTrader 5 | mql5 Coding Lesson
18:12
René Balke - Fx Bot Trading
Рет қаралды 18 М.
Ultimate Step-by-Step Guide to Technical Analysis (with ZERO experience)
58:19
Ross Cameron - Warrior Trading
Рет қаралды 529 М.
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН