OPEN-SOURCE SCRIPT
已更新 [blackcat] L1 Joe Sharp More Responsive Moving Average (MMA)

Level: 1
Background
Joe Sharp propsed a "More Responsive Moving Averages (MMA)" in Jan, 2000. He describes a modified moving average that greatly diminishes the lag that is typically associated with moving averages. With the formula described in the article, the moving average line is more responsive to changes in the price action.
Function
An MMA indicator to plot the modified moving average is created in this script for application on a chart with fastline and slowline to produce golden crosses and dead crosses. In the pine script below, the calculation for the modified moving average is created in a function called ModifiedMA. This function basically takes care of all the necessary calculations for the modified moving average line. By putting the entire calculation into a function, the modified moving average calculation can be easily referenced by any analysis technique.
Key Signal
ModifiedMA (Price, FastLength) --> ModifiedMA Fast Line.
ModifiedMA (Price, SlowLength) --> ModifiedMA Slow Line.
Remarks
This is a Level 1 free and open source indicator.
Feedbacks are appreciated.
Background
Joe Sharp propsed a "More Responsive Moving Averages (MMA)" in Jan, 2000. He describes a modified moving average that greatly diminishes the lag that is typically associated with moving averages. With the formula described in the article, the moving average line is more responsive to changes in the price action.
Function
An MMA indicator to plot the modified moving average is created in this script for application on a chart with fastline and slowline to produce golden crosses and dead crosses. In the pine script below, the calculation for the modified moving average is created in a function called ModifiedMA. This function basically takes care of all the necessary calculations for the modified moving average line. By putting the entire calculation into a function, the modified moving average calculation can be easily referenced by any analysis technique.
Key Signal
ModifiedMA (Price, FastLength) --> ModifiedMA Fast Line.
ModifiedMA (Price, SlowLength) --> ModifiedMA Slow Line.
Remarks
This is a Level 1 free and open source indicator.
Feedbacks are appreciated.
版本注释
OVERVIEWThe L1 Joe Sharp More Responsive Moving Average (MMA) indicator is designed to provide traders with more responsive moving averages compared to traditional methods 📈🔍. It calculates two modified moving averages: a fast and a slow version, which can be customized based on user preferences. The script plots these averages on the chart and highlights areas where they intersect, indicating potential buy or sell opportunities 💸✅. Additionally, it includes labels for visual cues and alert conditions for automated trading strategies ⚠️🛎️.
FEATURES
Customizable price sources and lengths for both fast and slow MMAs.
Plots fast and slow Modified Moving Averages with customizable colors and line widths.
Highlights intersections between fast and slow MMAs using fill colors.
Provides visual buy and sell signals via labels on the chart.
Includes alert conditions for automated trading notifications.
HOW TO USE
Input Parameters:
Set the desired price_source from available options like close, open, high, low, etc.
Adjust the fast_length and slow_length inputs to define the periods for the respective moving averages.
Interpreting Signals:
When the fast MMA crosses above the slow MMA, a buy signal (BUY) is generated.
Conversely, when the fast MMA crosses below the slow MMA, a sell signal (SELL) is triggered.
Visual cues are provided through colored labels on the chart for easy identification.
Customizing Alerts:
Enable alerts in TradingView settings to receive notifications when buy/sell conditions are met.
Modify alert messages as needed for personalized trading strategies.
LIMITATIONS
The responsiveness of the moving averages may vary depending on market conditions and selected parameters.
Users should backtest and optimize the script with their specific trading instruments and timeframes before relying solely on its signals.
NOTES
The script uses a custom function to compute the Modified Moving Average, enhancing sensitivity to recent price changes.
Fill colors between the fast and slow MMAs help visualize trends and potential reversals more clearly.
开源脚本
本着TradingView的真正精神,此脚本的创建者将其开源,以便交易者可以查看和验证其功能。向作者致敬!虽然您可以免费使用它,但请记住,重新发布代码必须遵守我们的网站规则。
Avoid losing contact!Don't miss out! The first and most important thing to do is to join my Discord chat now! Click here to start your adventure: discord.com/invite/ZTGpQJq 防止失联,请立即行动,加入本猫聊天群: discord.com/invite/ZTGpQJq
免责声明
这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。
开源脚本
本着TradingView的真正精神,此脚本的创建者将其开源,以便交易者可以查看和验证其功能。向作者致敬!虽然您可以免费使用它,但请记住,重新发布代码必须遵守我们的网站规则。
Avoid losing contact!Don't miss out! The first and most important thing to do is to join my Discord chat now! Click here to start your adventure: discord.com/invite/ZTGpQJq 防止失联,请立即行动,加入本猫聊天群: discord.com/invite/ZTGpQJq
免责声明
这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。