OPEN-SOURCE SCRIPT
Mis à jour

GFS2k25

Multi Time Frame RSI Panel", designed to monitor the Relative Strength Index (RSI) across multiple timeframes and generate buy and sell alerts based on predefined RSI thresholds. Here's a breakdown of its functionality:

Key Features:
Multi-Timeframe RSI Calculation:

Fetches RSI values from various timeframes, including 1m, 3m, 5m, 7m, 15m, 30m, 1h, 2h, 4h, 1d, 1w, 1M.
Allows users to select which timeframes they want to display.
RSI Thresholds for Buy and Sell Alerts:

Allows users to configure RSI thresholds for different timeframes.
Buy and sell conditions are determined based on RSI crossovers and crossunders.
Customizable Settings:

Dark Mode option for better visibility.
Adjustable RSI period.
Custom upper and lower RSI thresholds for each timeframe.
Alert Conditions:

Buy Alert:
RSI crossover for the 1-minute timeframe.
RSI values within predefined thresholds for 3m, 15m, 30m, and 60m.
Sell Alert:
RSI crossunder for the 1-minute timeframe.
RSI values below predefined thresholds for 3m, 15m, 30m, and 60m.
Alerts are triggered visually on the chart and through TradingView's alert system.
Notes de version
This is a Pine Script v5 script for TradingView, which creates a multi-timeframe RSI panel with buy and sell alerts based on RSI (Relative Strength Index) levels.

Overview
It allows traders to monitor RSI values across multiple timeframes.
It provides buy and sell alerts based on RSI crossovers and thresholds.
Displays a table panel on the chart with RSI values and color-coded indicators.
Supports dark mode for visualization customization.
Key Features
1. Multi-Timeframe RSI Calculation
The script calculates RSI values for different timeframes:
1 min, 3 min, 15 min, 30 min, 60 min, 1h, 2h, 4h, 1d, 1w, 1M.
Uses request.security() to retrieve RSI values from different chart periods.
2. Customizable RSI Thresholds
Allows users to input custom RSI thresholds for:
Buy signals
Sell signals
RSI overbought (upper) and oversold (lower) thresholds are customizable for each timeframe.
3. Buy & Sell Alerts
Buy Alert Logic:
RSI must be within the specified threshold range across multiple timeframes.
Uses ta.crossover() for detecting RSI crossing a threshold from below.
Sell Alert Logic:
RSI must be within the specified range across multiple timeframes.
Uses ta.crossunder() for detecting RSI crossing a threshold from above.
Alerts are plotted as green "Buy" labels and red "Sell" labels on the chart.

Clause de non-responsabilité