У нас вы можете посмотреть бесплатно +1133%, RSI 2 Strategy, Back Tested 26 Years или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Prepare to be amazed as we dive into the RSI 2 Strategy, meticulously back-tested over 26 years, yielding a staggering +1133% return! 📈 In this video, we'll cover: The basics and nuances of the RSI (Relative Strength Index) 2 Strategy. Detailed steps of the back-testing process on historical market data. Comprehensive analysis of the results over a 26-year period. Practical insights and tips for applying this strategy in your trading practice. Whether you're new to trading or an experienced investor looking for robust strategies, this video has something valuable for you! 🔔 Subscribe for more in-depth trading strategies and analyses! 📊 Resources: www.TradingView.com @StatOasisyoutube channel 📚 Recommended Reading: "Long-Term Secrets to Short-Term Trading" Larry Williams "Technical Analysis of the Financial Markets" by John Murphy "New Concepts in Technical Trading Systems" by J. Welles Wilder Jr. 💬 Join the Discussion: Share your thoughts and experiences with the RSI 2 Strategy in the comments below! 👍 Like this video if you found it insightful and share it with fellow traders! #Trading #RSI #TechnicalAnalysis #BackTesting #TradingStrategy #StockMarket #Forex #Crypto #Investing #futures #futurestrading #Finance #Investing #algotrading #RSI2Strategy #MarketRegimeIndicators #TradingSuccess #AlgorithmicTrading #TradingStrategies #MarketDirection #VolatilityRegimes Disclaimer: This video is for educational/entertainment purposes only. Trading and investing involve risk. Past performance is not indicative of future results. Always do your own research and consider consulting with a financial advisor. Programming: // © marvr247 //@version=5 strategy("RSI 2 Estrategia", overlay=true, default_qty_type = strategy.fixed, initial_capital = 20000, default_qty_value = 1)//, margin_long=100, margin_short=100) RSI2 = ta.rsi(close, 2) Nivelcompra = input.int(20, "Valor de Entrada") Nivelsalida = input.int(80, "Valor de Salida") longCondition = ta.crossunder(RSI2, Nivelcompra)//ta.sma(close, 14), ta.sma(close, 28)) if (longCondition) strategy.entry("Entrada", strategy.long) shortCondition = ta.crossover(RSI2, Nivelsalida)//ta.sma(close, 14), ta.sma(close, 28)) if (shortCondition) strategy.close("Entrada", "Salida")