I Made ___ Trading Forex In 2024
21:18
11 сағат бұрын
Пікірлер
@RANJEETSINGH-mz4py
@RANJEETSINGH-mz4py 6 сағат бұрын
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
@amirshokati6377
@amirshokati6377 7 сағат бұрын
Thanks it was very informative
@ĐứcTúPhan-j5r
@ĐứcTúPhan-j5r 7 сағат бұрын
can i install this sofware on macbook ?
@martinheyerdahl9147
@martinheyerdahl9147 7 сағат бұрын
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!
@tradingkernel
@tradingkernel 9 сағат бұрын
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
@tradingkernel
@tradingkernel 9 сағат бұрын
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-y5q
@JassyPhiri-y5q 17 сағат бұрын
Rene, you are the best coding tutor!!
@maryannewambui-wi9zh
@maryannewambui-wi9zh 19 сағат бұрын
Thanks you so much for this video. I have some knowledge in C++ and want to learn trading using MQL5.
@rubendelacruz3709
@rubendelacruz3709 20 сағат бұрын
Rene, do a backtest of this strategy. Is easy lenguaje, 17k dd, 363k profit since 2018 for nq
@rubendelacruz3709
@rubendelacruz3709 20 сағат бұрын
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
@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
@SiddhantRaj-20 Күн бұрын
Is forex trading good?
@RobotInnovationandAI
@RobotInnovationandAI Күн бұрын
before i didnt understand what ftmo is now am shocked wondering two 100k ftmo and still you want more damn
@RobotInnovationandAI
@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
@RobotInnovationandAI Күн бұрын
Crazy stuff here you are use to prop firm trading while people are trolling you on the other live ongoing
@RobotInnovationandAI
@RobotInnovationandAI Күн бұрын
bro how many account do you have for ftmo
@sarder2008
@sarder2008 Күн бұрын
Is the Range Breakout Strategy EA available for us?
@PalmSystem
@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
@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
@Ryan98981 Күн бұрын
Test GOLD one EA in 1 H in xau/usd for 1 year 100x return 😂😂❤❤
@Ryan98981
@Ryan98981 Күн бұрын
And also range master EA IN gbpusd pair
@RobotInnovationandAI
@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
@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
@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
@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
@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
@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)
@BurlieJenkinz
@BurlieJenkinz 2 күн бұрын
Halte XAI67F gerade und ehrlich gesagt, fühle ich mich, als wäre ich früh bei etwas wirklich Großem dabei 🔥
@SelinaLaydonz
@SelinaLaydonz 2 күн бұрын
200k XAI67F und es wird immer mehr. Die anderen werden später nur FOMO haben lol 🔥
@VassilyLeysonz
@VassilyLeysonz 2 күн бұрын
Ich weiß nicht, worauf die Leute warten. XAI67F fühlt sich wie der größte Move an, den ich je gemacht habe.
@NateHaggethz
@NateHaggethz 2 күн бұрын
Wenn du XAI67F jetzt nicht stackst, viel Glück, es später zu kaufen 😬
@FerneMacSweenz
@FerneMacSweenz 2 күн бұрын
Halte XAI67F jetzt und verstehe nicht, wie andere es nicht sehen 🚀
@SharylDobsonsz
@SharylDobsonsz 2 күн бұрын
XAI67F wird riesig, Bro. Die Leute übersehen das komplett 😤
@VereneSermanz
@VereneSermanz 2 күн бұрын
XAI67F wird definitiv Leben verändern. Halte fest und bin bereit für die nächste große Welle!
@GwennyLetertrez
@GwennyLetertrez 2 күн бұрын
Danke für deinen Rat, bin jetzt tief in XAI67F drin. Kann es kaum erwarten zu sehen, wohin das führt.
@KissieBreckellz
@KissieBreckellz 2 күн бұрын
Habe mit PEPE Gewinne gemacht, aber XAI67F fühlt sich wie mein nächster großer Gewinn an. All-in für die Reise 🚀
@ConchitaBarensez
@ConchitaBarensez 2 күн бұрын
XAI67F hat echten Wert, anders als so viele gehypte Projekte. Halte stark und warte, bis die Welt es merkt!
@BidgetFleming
@BidgetFleming 2 күн бұрын
XAI67F zu halten, fühlt sich an wie frühe Bitcoin-Vibes. Alle schlafen noch drauf, aber nicht mehr lange.
@AlineKnappz
@AlineKnappz 2 күн бұрын
Bin so gehypt auf das Potenzial von XAI67F. Jeder Dip fühlt sich wie ein Geschenk an. Lade bei jeder Gelegenheit nach.
@TimiShildrickz
@TimiShildrickz 2 күн бұрын
Vielen Dank, dass du mich auf XAI67F aufmerksam gemacht hast. Deine Tipps sind Gold wert. Ich bin jetzt voll dabei!
@LizabethHaylettz
@LizabethHaylettz 2 күн бұрын
XAI67F ist wie ein verborgenes Juwel, das noch niemand sieht. Warte geduldig auf den Durchbruchsmoment.
@AntonieLarbyz
@AntonieLarbyz 2 күн бұрын
Ich habe schwer in XAI67F investiert. Dieser Coin wird die Zweifler so schnell hinter sich lassen. Der nächste Bull-Markt gehört uns!
@MarijoDreganzz
@MarijoDreganzz 2 күн бұрын
XAI67F ist die Zukunft. Alle, die es jetzt ignorieren, werden es bereuen, wenn es durchstartet.
@CadIckeringillz
@CadIckeringillz 2 күн бұрын
Ich beobachte XAI67F und kann nicht mehr widerstehen. Habe 50k investiert und bin bereit für den Boom!
@DwightWhittingtonz
@DwightWhittingtonz 2 күн бұрын
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!
@Theklarotzold
@Theklarotzold 2 күн бұрын
XAI67F ist das echte Ding. Noch nicht gehypt, aber das Potenzial ist irre. Alles rein für den langen Weg!
@PatenMasseiz
@PatenMasseiz 2 күн бұрын
Habe nach deinem Tipp XAI67F gekauft. Fühle mich sicher, dass das mein größter Gewinn wird 🚀
@MagdalenKrauzez
@MagdalenKrauzez 2 күн бұрын
XAI67F ist so unterbewertet. Wenn der Markt aufwacht, werden wir verrückte Zahlen sehen. Ich halte groß!
@TovaGodonz
@TovaGodonz 2 күн бұрын
Deinen Rat zu XAI67F zu befolgen, war die beste Entscheidung überhaupt. Ich sehe schon Gewinne und halte für mehr!
@ElseyCrampinz
@ElseyCrampinz 2 күн бұрын
Alle, die vor dem nächsten Bull-Run XAI67F anhäufen, werden am Ende lachen. Dieser Coin hat reines Potenzial!
@OlvanNeamez
@OlvanNeamez 2 күн бұрын
XAI67F zu halten, fühlt sich an wie ein Cheat-Code zu lebensveränderndem Wohlstand. Warte nur darauf, dass der Markt aufholt!
@smithcaliana
@smithcaliana 2 күн бұрын
Everyone FOMOing into big coins, but XAI67F feels like the smarter play. Holding tight for the ride up.