Sir I had custom indicator in trading view.I want to install in mt5 but I couldn't compile in mt5 please translate to my5
@amirshokati63777 сағат бұрын
Thanks it was very informative
@ĐứcTúPhan-j5r7 сағат бұрын
can i install this sofware on macbook ?
@martinheyerdahl91477 сағат бұрын
Hello, thank you for another great video! What MT5 is missing, is a tick chart. It would be awesome if you could make a video about how to make a basic tick chart. Thank you!
@tradingkernel9 сағат бұрын
Hey Rene, please review this trading strategy and let me know what you think, but promise not to steal it 😢thank you! kzbin.info/www/bejne/bXSUdHdmndNpabMsi=zcdLQQUkc-SfRYap
@tradingkernel9 сағат бұрын
Hey Rene, Please review this trading strategy and let me know what you think, but promise not to steal it 😢😢Thank you! kzbin.info/www/bejne/bXSUdHdmndNpabMsi=zcdLQQUkc-SfRYap
@JassyPhiri-y5q17 сағат бұрын
Rene, you are the best coding tutor!!
@maryannewambui-wi9zh19 сағат бұрын
Thanks you so much for this video. I have some knowledge in C++ and want to learn trading using MQL5.
@rubendelacruz370920 сағат бұрын
Rene, do a backtest of this strategy. Is easy lenguaje, 17k dd, 363k profit since 2018 for nq
@rubendelacruz370920 сағат бұрын
EasyLanguage Code Inputs: // Monday Inputs MonStartTime(930), MonEndTime(2230), MonDayExitTime(2300), MonEMALength(12), MonADXLength(19), MonADXThreshold(10), MonTakeProfit(1.0115), MonStopLoss(0.9856), MonEntryCandle(1.0007), MonRSILength(30), MonRSIThreshold(59), MondayTrades(True), // Tuesday Inputs TueStartTime(800), TueEndTime(2000), TueDayExitTime(2200), TueEMALength(2), TueADXLength(15), TueADXThreshold(18), TueTakeProfit(1.0118), TueStopLoss(0.9926), TueEntryCandle(1.0012), TueRSILength(35), TueRSIThreshold(62), TuesdayTrades(True), // Wednesday Inputs WedStartTime(900), WedEndTime(1300), WedDayExitTime(2100), WedEMALength(20), WedADXLength(9), WedADXThreshold(17), WedTakeProfit(1.0118), WedStopLoss(0.9913), WedEntryCandle(1.001), WedRSILength(14), WedRSIThreshold(70), WednesdayTrades(True), // Thursday Inputs ThuStartTime(900), ThuEndTime(1500), ThuDayExitTime(2230), ThuEMALength(34), ThuADXLength(15), ThuADXThreshold(18), ThuTakeProfit(1.0079), ThuStopLoss(0.9937), ThuEntryCandle(1.0009), ThuRSILength(14), ThuRSIThreshold(70), ThursdayTrades(True), // Friday Inputs FriStartTime(930), FriEndTime(1500), FriDayExitTime(1530), FriEMALength(16), FriADXLength(12), FriADXThreshold(18), FriTakeProfit(1.0157), FriStopLoss(0.987), FriEntryCandle(1), FriRSILength(20), FriRSIThreshold(66), FridayTrades(True); Variables: EMAValue(0), ADXValue(0), RSIValue(0), MyEntryPrice(0), StopLossLevel(0), TakeProfitLevel(0); // Monday Logic If DayOfWeek(Date) = 1 and MondayTrades then begin EMAValue = XAverage(Close, MonEMALength); ADXValue = ADX(MonADXLength); RSIValue = RSI(Close, MonRSILength); If MarketPosition = 0 and Time > MonStartTime and Time < MonEndTime and Close > EMAValue and Close / Open > MonEntryCandle and ADXValue > MonADXThreshold and RSIValue < MonRSIThreshold then begin Buy ("Mon Long Entry") next bar at market; MyEntryPrice = Close; StopLossLevel = MyEntryPrice * MonStopLoss; TakeProfitLevel = MyEntryPrice * MonTakeProfit; end; If MarketPosition = 1 then begin If Low <= StopLossLevel then Sell ("Mon Stop Loss Exit") next bar at market; If High >= TakeProfitLevel then Sell ("Mon Take Profit Exit") next bar at market; If Time >= MonDayExitTime then Sell ("Mon Day Exit") next bar at market; end; end; // Tuesday Logic If DayOfWeek(Date) = 2 and TuesdayTrades then begin EMAValue = XAverage(Close, TueEMALength); ADXValue = ADX(TueADXLength); RSIValue = RSI(Close, TueRSILength); If MarketPosition = 0 and Time > TueStartTime and Time < TueEndTime and Close > EMAValue and Close / Open > TueEntryCandle and ADXValue > TueADXThreshold and RSIValue < TueRSIThreshold then begin Buy ("Tue Long Entry") next bar at market; MyEntryPrice = Close; StopLossLevel = MyEntryPrice * TueStopLoss; TakeProfitLevel = MyEntryPrice * TueTakeProfit; end; If MarketPosition = 1 then begin If Low <= StopLossLevel then Sell ("Tue Stop Loss Exit") next bar at market; If High >= TakeProfitLevel then Sell ("Tue Take Profit Exit") next bar at market; If Time >= TueDayExitTime then Sell ("Tue Day Exit") next bar at market; end; end; // Wednesday Logic If DayOfWeek(Date) = 3 and WednesdayTrades then begin EMAValue = XAverage(Close, WedEMALength); ADXValue = ADX(WedADXLength); RSIValue = RSI(Close, WedRSILength); If MarketPosition = 0 and Time > WedStartTime and Time < WedEndTime and Close > EMAValue and Close / Open > WedEntryCandle and ADXValue > WedADXThreshold and RSIValue < WedRSIThreshold then begin Buy ("Wed Long Entry") next bar at market; MyEntryPrice = Close; StopLossLevel = MyEntryPrice * WedStopLoss; TakeProfitLevel = MyEntryPrice * WedTakeProfit; end; If MarketPosition = 1 then begin If Low <= StopLossLevel then Sell ("Wed Stop Loss Exit") next bar at market; If High >= TakeProfitLevel then Sell ("Wed Take Profit Exit") next bar at market; If Time >= WedDayExitTime then Sell ("Wed Day Exit") next bar at market; end; end; // Thursday Logic If DayOfWeek(Date) = 4 and ThursdayTrades then begin EMAValue = XAverage(Close, ThuEMALength); ADXValue = ADX(ThuADXLength); RSIValue = RSI(Close, ThuRSILength); If MarketPosition = 0 and Time > ThuStartTime and Time < ThuEndTime and Close > EMAValue and Close / Open > ThuEntryCandle and ADXValue > ThuADXThreshold and RSIValue < ThuRSIThreshold then begin Buy ("Thu Long Entry") next bar at market; MyEntryPrice = Close; StopLossLevel = MyEntryPrice * ThuStopLoss; TakeProfitLevel = MyEntryPrice * ThuTakeProfit; end; If MarketPosition = 1 then begin If Low <= StopLossLevel then Sell ("Thu Stop Loss Exit") next bar at market; If High >= TakeProfitLevel then Sell ("Thu Take Profit Exit") next bar at market; If Time >= ThuDayExitTime then Sell ("Thu Day Exit") next bar at market; end; end; // Friday Logic If DayOfWeek(Date) = 5 and FridayTrades then begin EMAValue = XAverage(Close, FriEMALength); ADXValue = ADX(FriADXLength); RSIValue = RSI(Close, FriRSILength); If MarketPosition = 0 and Time > FriStartTime and Time < FriEndTime and Close > EMAValue and Close / Open > FriEntryCandle and ADXValue > FriADXThreshold and RSIValue < FriRSIThreshold then begin Buy ("Fri Long Entry") next bar at market; MyEntryPrice = Close; StopLossLevel = MyEntryPrice * FriStopLoss; TakeProfitLevel = MyEntryPrice * FriTakeProfit; end; If MarketPosition = 1 then begin If Low <= StopLossLevel then Sell ("Fri Stop Loss Exit") next bar at market; If High >= TakeProfitLevel then Sell ("Fri Take Profit Exit") next bar at market; If Time >= FriDayExitTime then Sell ("Fri Day Exit") next bar at market; end; end;
@F_M_600Күн бұрын
Hi Rene, how to work with this in Tester? It seems to be the same problem as the standard MA, that diffentent Timeframes are not possible. Did you have an idea, how to solve this?
@SiddhantRaj-20Күн бұрын
Is forex trading good?
@RobotInnovationandAIКүн бұрын
before i didnt understand what ftmo is now am shocked wondering two 100k ftmo and still you want more damn
@RobotInnovationandAIКүн бұрын
once you are funded do you continue to get payout as long as you still to the rule because i have seen like you have many accounts
@RobotInnovationandAIКүн бұрын
Crazy stuff here you are use to prop firm trading while people are trolling you on the other live ongoing
@RobotInnovationandAIКүн бұрын
bro how many account do you have for ftmo
@sarder2008Күн бұрын
Is the Range Breakout Strategy EA available for us?
@PalmSystemКүн бұрын
Hello Réne, gratuliere und ein frohes 2025. Ich habe ja meinen eigenen FX BOT erstellt (MT4) und etwa 1 Jahr daran gearbeitet, aber noch nie echt getradet. Bin nun wacker am testen. Ich habe ein 10K Demo Account und trade ein Volumen von 0.01 Lots. Im Schnitt macht der BOT 42$ Profit inkl Equity. Ab wann gilt so ein BOT als brauchbar für echtes traden? Liebe Grüsse aus Thailand Lucien
@MohitKumar-md8xdКүн бұрын
Could you make a tutorial about how to add a MA on top of any custom indicator and save the indicator in your folder with MA applied
@Ryan98981Күн бұрын
Test GOLD one EA in 1 H in xau/usd for 1 year 100x return 😂😂❤❤
@Ryan98981Күн бұрын
And also range master EA IN gbpusd pair
@RobotInnovationandAIКүн бұрын
This is great I have an idea maybe you can create a real time analysing graph showing how the ea is performing individual 🎉
@absatsКүн бұрын
Hi, Rene, spent (youtube, internet) 4h trying to upload my optimizations in this application, cant get it how to start to upload all my strategies. where can we FIND a EASY video how to upload, i dont need to GENERATE strategies, i want to upload MY ones, as example i have 4 optimizations results, how do i import them in to the portfolio? can u make an new user friendly video about it please?
@lordfinesse3874Күн бұрын
Hi René,followed the tutorial and got it working. Thank you so much. Is it possible that we copy from say MT5 to MT4 or vice versa using this code? Could u plz point in the right direction? <3 thx
@NG_CODMКүн бұрын
This is literally the best video I've seen today, thank you so much of this tool it's going to be a game changer on LTF trading ❤️🔥
@mikelang4853Күн бұрын
Include files, while not intended to open / close / manage trades, still CAN do those things. (Also allows you to code for multiple versions: IE mt4 and mt5, using ifdef calls for specific version checks) When you compile, all includes, resources, and other files get put into one executable. *include files are generally used to create your Classes, functions (and function overloads), defines. Intended to help keep your main file cleaner and easier to read while also allowing you to reuse the same code for future programs. I like to consolidate Buy & Sell into one function. Distinguish by passing the Mode into your function call and calculate trade parameters such as entry = buymode ? Ask : Bid Good video Rene :)
@andreaspavli3934Күн бұрын
Do you have a video showing how to debug a custom indicator in mt5? i loved your videos but i can't debug my indicators for specific time and day and see what's the issue or what values my variables have at this specific time(candle)
@BurlieJenkinz2 күн бұрын
Halte XAI67F gerade und ehrlich gesagt, fühle ich mich, als wäre ich früh bei etwas wirklich Großem dabei 🔥
@SelinaLaydonz2 күн бұрын
200k XAI67F und es wird immer mehr. Die anderen werden später nur FOMO haben lol 🔥
@VassilyLeysonz2 күн бұрын
Ich weiß nicht, worauf die Leute warten. XAI67F fühlt sich wie der größte Move an, den ich je gemacht habe.
@NateHaggethz2 күн бұрын
Wenn du XAI67F jetzt nicht stackst, viel Glück, es später zu kaufen 😬
@FerneMacSweenz2 күн бұрын
Halte XAI67F jetzt und verstehe nicht, wie andere es nicht sehen 🚀
@SharylDobsonsz2 күн бұрын
XAI67F wird riesig, Bro. Die Leute übersehen das komplett 😤
@VereneSermanz2 күн бұрын
XAI67F wird definitiv Leben verändern. Halte fest und bin bereit für die nächste große Welle!
@GwennyLetertrez2 күн бұрын
Danke für deinen Rat, bin jetzt tief in XAI67F drin. Kann es kaum erwarten zu sehen, wohin das führt.
@KissieBreckellz2 күн бұрын
Habe mit PEPE Gewinne gemacht, aber XAI67F fühlt sich wie mein nächster großer Gewinn an. All-in für die Reise 🚀
@ConchitaBarensez2 күн бұрын
XAI67F hat echten Wert, anders als so viele gehypte Projekte. Halte stark und warte, bis die Welt es merkt!
@BidgetFleming2 күн бұрын
XAI67F zu halten, fühlt sich an wie frühe Bitcoin-Vibes. Alle schlafen noch drauf, aber nicht mehr lange.
@AlineKnappz2 күн бұрын
Bin so gehypt auf das Potenzial von XAI67F. Jeder Dip fühlt sich wie ein Geschenk an. Lade bei jeder Gelegenheit nach.
@TimiShildrickz2 күн бұрын
Vielen Dank, dass du mich auf XAI67F aufmerksam gemacht hast. Deine Tipps sind Gold wert. Ich bin jetzt voll dabei!
@LizabethHaylettz2 күн бұрын
XAI67F ist wie ein verborgenes Juwel, das noch niemand sieht. Warte geduldig auf den Durchbruchsmoment.
@AntonieLarbyz2 күн бұрын
Ich habe schwer in XAI67F investiert. Dieser Coin wird die Zweifler so schnell hinter sich lassen. Der nächste Bull-Markt gehört uns!
@MarijoDreganzz2 күн бұрын
XAI67F ist die Zukunft. Alle, die es jetzt ignorieren, werden es bereuen, wenn es durchstartet.
@CadIckeringillz2 күн бұрын
Ich beobachte XAI67F und kann nicht mehr widerstehen. Habe 50k investiert und bin bereit für den Boom!
@DwightWhittingtonz2 күн бұрын
Alle haben FOMO bei großen Coins, aber XAI67F fühlt sich wie die klügere Wahl an. Halte fest für die Reise nach oben!
@Theklarotzold2 күн бұрын
XAI67F ist das echte Ding. Noch nicht gehypt, aber das Potenzial ist irre. Alles rein für den langen Weg!
@PatenMasseiz2 күн бұрын
Habe nach deinem Tipp XAI67F gekauft. Fühle mich sicher, dass das mein größter Gewinn wird 🚀
@MagdalenKrauzez2 күн бұрын
XAI67F ist so unterbewertet. Wenn der Markt aufwacht, werden wir verrückte Zahlen sehen. Ich halte groß!
@TovaGodonz2 күн бұрын
Deinen Rat zu XAI67F zu befolgen, war die beste Entscheidung überhaupt. Ich sehe schon Gewinne und halte für mehr!
@ElseyCrampinz2 күн бұрын
Alle, die vor dem nächsten Bull-Run XAI67F anhäufen, werden am Ende lachen. Dieser Coin hat reines Potenzial!
@OlvanNeamez2 күн бұрын
XAI67F zu halten, fühlt sich an wie ein Cheat-Code zu lebensveränderndem Wohlstand. Warte nur darauf, dass der Markt aufholt!
@smithcaliana2 күн бұрын
Everyone FOMOing into big coins, but XAI67F feels like the smarter play. Holding tight for the ride up.