Awesome...very useful ...always you make things so simple
@fredbaiden4720 Жыл бұрын
Ive been waiting for this .. thank you 🤝🤝
@czerwonysmok7426 Жыл бұрын
Super usefull video Rene, i think is important lesson, short code and and some sort of information. Thank you Rene. see ya on the next page ;)
@rrtjr Жыл бұрын
Hi Rene, would it be fine to have as a newer topic on how to incorporate economic news?
@tebohopatrickletanta2101 Жыл бұрын
I've been looking for this for a long time. Thank you very much❤. God bless
@januszkosciukiewicz Жыл бұрын
A very useful video. An interesting topic would be to adapt any of your previous programs to work with openCL so it can do testing using power of GPU.
@RobotInnovationandAI5 ай бұрын
This guy has covered almost everything in trading using programming damn
@esassaki2011 Жыл бұрын
Exactly what I was looking for, thanks for the video ! Would be very great to watch one checking a web site where users could do by themselves their account number...
@Bradley32r6 ай бұрын
Amazing work✨👌🏾, you’re appreciated
@ah89971 Жыл бұрын
Rene, this is great but mql EAs now can be decompiled. There is a telegram group has all the EAs decompiled and updated. In this case, the login can be easily bypassed. One thing I did, is to make the logics into a server and make connection restriction to only specific device details that are paired with the registered account for the first time. In this case, even if the EA is bypassed, the trades messages won't come to that EA as the device details is not in the whitest. The device details cannot be cloned because some of them is not on the user hand to change it.
@The.0h83 Жыл бұрын
This is very interesting! Do you have any more info or able to elaborate for someone who also wants to do this?
@WillRad Жыл бұрын
How do you find this telegram group
@ah89971 Жыл бұрын
@@WillRad search for "Get Forex EA group"
@mnimaeslamian Жыл бұрын
Hi Rene, Could you make a video foe remote licensing?
@wellington88047 ай бұрын
Thanks Rene it helped me a lot ❤
@percivalbuenvenida1925 Жыл бұрын
amazing video bro! thanks a lot for sharing this
@peterriley981410 ай бұрын
This is a very useful video. Thanks. Is there any way to lock out the ability for copy trading the file - for example if you free licence a demo version and to then prevent copy to a live account/multiple accounts?
@abelzhuwao4761 Жыл бұрын
Thanks have been looking forward to this one
@EEMBMinecraft2442 Жыл бұрын
Hey René, hope your having a great day. Thank you for making this video. Are you willing to make video on how to do it using a server? Thank you
@ReneBalke Жыл бұрын
I do not think I will show it here because that would involve server side programming and it is not really what the channel is about.
@matthewturner8 Жыл бұрын
Hey man, can you make a video on how to create an interface overlay on your source code? Like if I wanted an overlay on the chart that told me leverage, lot size and maybe my logo? How would I do that?
@toopac99 Жыл бұрын
Hi Rene. Thanks for the video. Is there a way to prevent a user from decompiling the executable and stop them from modifying the source code?
@ReneBalke Жыл бұрын
I don't really know. Never really looked into this to be honest..
@ForexWW4 ай бұрын
Hi Renne, many thanks for your videos! Just a question, my guess is, if they can decompile ex5, the could do the sane with the one downloaded from mql5, right? So my only question would be, without decompiling the code, could soneone find where their account has been hardcoded and just remove the hardcoded protection?
@nidaahassan7629 Жыл бұрын
Thank you Rene for your time and knowledge Could you please explain how to calculate the PIP'S value where the account currency other than USD.
@marcellpetras1539 Жыл бұрын
Let's say your account is in pounds and let's take the EUR/USD pair. Pips will be in USD, 0.0001 = 1 pip and it will worth 10 USD @1 lot. you take 10 usd and multiply it with the inverse of the GBP/USD rate. The rate could be 1.2 for example, but that shows pounds in USD so 1/1.2 -> 0.83. That shows you the value of 1 USD in pounds. 10 * 0.83 will be about 8.3 pounds per pip for this pair.
@fiwithsantanu4 ай бұрын
If someone can decompile it, will he not be able to find this?
@anzerkgaje1972 Жыл бұрын
Amazing video . Thank you But how can I license more than one account under 1 file ? Thanks
@ReneBalke Жыл бұрын
You could just add more accounts e.g. if(AccountInfoInteger(ACCOUNT_LOGIN) != 320949234 && AccountInfoInteger(ACCOUNT_LOGIN) != 44355655 && AccountInfoInteger(ACCOUNT_LOGIN) != 89973333){ return INIT_FAILED; }
@shagarcool Жыл бұрын
Brother I want to join your paid course. But before I want to know which one is best mt4/mt5 proggramming and why?
@ReneBalke Жыл бұрын
Hey, love to hear that. I think mt5 programming is better since it provides a lot more features. It is more efficient, has better testing options and more flexibility when it comes to programming.
@shagarcool Жыл бұрын
Is mt5 EA works on mt4? & mt4 EA works on mt5@@ReneBalke
@JPKChi Жыл бұрын
I can't calculate the exact parameters.. can the EA be used with GOLD or COIN (BNB)???...Please give specific example,, gold, ETH, ....cryptocurrency
@Neverwolf01 Жыл бұрын
can you make a tutorial how to make Remote licenses via web for mql5 to manage license?
@EA_Automaton_Fx8 ай бұрын
Great!!! but. Can you do for MT4?
@ReneBalke8 ай бұрын
I am sorry but I focus on mql5 on the channel right now. It is really similar though jsut google for the quick solution ;)
@EA_Automaton_Fx8 ай бұрын
Thanks a Lot Dude
@EA_Automaton_Fx8 ай бұрын
I did it in MQL4. I am very grateful for sharing your knowledge with the public. Thank you very much. God bless you.
@EA_Automaton_Fx8 ай бұрын
Could you teach me how to backtest my EA? I did it but without stop loss. he works with order opening and TP reallocation
@nicklasaxelsson4358 Жыл бұрын
How would I check the expire date periodically, not only when it's started?
@ReneBalke Жыл бұрын
You can add the code for this in the OnTick function for example
@nicklasaxelsson4358 Жыл бұрын
Thank's @@ReneBalke , would that slow down the system or make my VPS suffer in the long run? Let's say I have a code that checks a remote licensing system, would it still be ok to add it in the OnTick function? Thank you very much for answering, much appreciated
@pairwiser Жыл бұрын
Interesting, Rene how does the rent option work on mql4 market for EA. Does the EA have a expiration and then buyer has rent it again ? Thank you
@pkoolc1 Жыл бұрын
How can one add multiple account number?
@ashokesingha87 Жыл бұрын
Thanks alot Sir..
@berntinulkshredder Жыл бұрын
everyday seems a new day!!!
@steveever Жыл бұрын
Hi, great content again, kindly drop the code so we can copy and paste. Thanks
@ReneBalke Жыл бұрын
It is in the video :) You can just copy it and maybe you will also learn something in the process ;)
@steveever Жыл бұрын
@@ReneBalke Hi, not possible to copy from video except text and the video transcript does not capture codes
@ruanava192811 ай бұрын
Thank you so much
@mrperfection69168 ай бұрын
I want for Mql4
@WayTruthLife7th8 ай бұрын
I seem to have an issue coding this into MT4 is it the exact copy from MT5 to MT4
@ReneBalke8 ай бұрын
MT4 coding language is slightly different than MT5
@SalphinaNgobeni Жыл бұрын
Hello Rene is it possible to license and Ea without the source code Thanks in advance
@anthonycroft75389 ай бұрын
You just give the customer the compiled ex5 file. It does not contain source code. That does not necessarily mean it cant be decompiled, but generally that is what you would do.
@Jabir_AfreDy8 ай бұрын
How to crack the ea please help
@sameerin5241 Жыл бұрын
HEY RENE LOVE YOU U GREAT
@Ama_Teur Жыл бұрын
It will be decompiled and resell . Its not license
@Jr.TheGifted Жыл бұрын
Sir can you please send a license key script for mt4. thank you
@ReneBalke Жыл бұрын
Right now I focus on mql5 on the channel. But actually it is really similar in mt4 programming.
@appmicrocreation Жыл бұрын
pleash send me source file
@humbleself72838 ай бұрын
Have been your follower,please can I kindly request you to help me create an EA please sir,I beg of you
@yuniqueclaassen60210 ай бұрын
Tried this and get a lot of errors.
@manuelmiranda532 Жыл бұрын
I've paid for one of your robots and you don't take care of your community, Ecalping EA has been losing money since I bought it, that's no good, you sold something that is not working, in LATAM is very difficult to earn that amount of money.
@ReneBalke Жыл бұрын
Hey, thanks for the feedback. Do you have specific questions or a problem that I can help you with? Please understand that I cannot see the future and cannot guarantee profits. That is why I try to be as honest as possible and provide as much information as possible. I share everything I know on this channel and I really try to make everyone benefit.
@jalalalizadeh6252 Жыл бұрын
Hello @manuelmiranda532 . You need test your robot on demo account for 2 or 3 month. After that use of it on real account.
@instaindicator24277 ай бұрын
Hi, can we add up all 3 functions in one code? Like, I want to restrict it to account numbers and also to Date and want it to be strict to Demo Accounts only? how do club all the codes into one? Please help
@ShineWithDimple Жыл бұрын
*Sir can you help to code lock account under account holder name. Also how to lock under multiple names. Thanks a lot.*
@Ama_Teur Жыл бұрын
do you understand that any ex4 and any ex5 even with cloud MQL5 protection now can be easy decompiled ?! what the point do such videos ?
@Ama_Teur Жыл бұрын
it costed 5 years ago 500$ , now it cost 100-50$ at freelancer