Money Wave Script (Visual Adaptive MFI)This Script is a visual modification of the Money Flow Index (MFI)
//@version=5
indicator(title="Money Flow Index", shorttitle="MFI", format=format.price, precision=2, timeframe="", timeframe_gaps=true)
length = input.int(title="Length", defval=14, minval=1, maxval=2000)
src = hlc3
mf = ta.mfi(src, length)
plot(mf, "MF", color=#7E57C2)
overbought=hline(80, title="Overbought", color=#787B86)
hline(50, "Middle Band", color=color.new(#787B86, 50))
oversold=hline(20, title="Oversold", color=#787B86)
fill(overbought, oversold, color=color.rgb(126, 87, 194, 90), title="Background")
This Money Wave Script is culled from. the Money Flow Index with visual representation to help traders identify money flow. In addition, the waves can be smoothened. Here’s a detailed overview based on its functionality, color coding, usage, risk management, and a concluding summary.
Functionality
The Money Wave Script operates as an oscillator that measures the inflow and outflow of money into an asset over a specified period. It calculates the MFI by considering both price and volume, which allows it to assess buying and selling pressures more accurately than traditional indicators that rely solely on price data.
Color Coding
The indicator employs a color-coded scheme to enhance visual interpretation:
Green Area: Indicates bullish conditions when the normalized Money wave is above zero, suggesting buying pressure.
Red Area: Indicates bearish conditions when the normalized Money wave is below zero, suggesting selling pressure.
Background Colors: The background changes to green when the MoneyWave exceeds the upper threshold (overbought) and red when it falls below the lower threshold (oversold), providing immediate visual cues about market conditions.
Usage
Traders utilize the Money Wave indicator in various ways:
Identifying Overbought and Oversold Levels: By observing the MFI readings, traders can determine when an asset may be overbought or oversold, prompting potential entry or exit points.
Spotting Divergences: Traders look for divergences between price and the MFI to anticipate potential reversals. For example, if prices are making new highs but the MFI is not, it could indicate weakening momentum.
Trend Confirmation: The indicator can help confirm trends by showing whether buying or selling pressure is dominating.
Customizable Settings: Users can adjust parameters such as the MFI length , Smoothen index and overbought/oversold thresholds to tailor the indicator to their trading strategies.
Conclusion
The Money Wave indicator is a powerful tool for traders seeking to analyze market conditions based on the flow of money into and out of assets. Its combination of price and volume analysis, along with clear visual cues, makes it an effective choice for identifying overbought and oversold conditions, spotting divergences, and confirming trends.
Cari dalam skrip untuk "wave"
FibLevel Size CalculatorThis skript calculates position sizes and new take profits for sizing into an long or short position with 3 entrys defined at custom fibonacci retracement levels.
TP: -0,272
Entry1: 0.382
Entry2: 0.618
Entry3: 0.83
SL: 1.05
Expected RR per trade is 0.2 with a High Win rate definitly profitable.
Search for an established trend on the higher timeframe, drop to the smaller ones and look for correction waves. Once they break to the trenddirection of the higher timeframe take the fib from lowest to highes point. Draw a fib level on the chart and use the Indicator to define these Levels above. The calculator gives you the Margin to use in each position, and will check that you will not get liquidated an that you have enough margin. It tells you the new TP for Limit2 and Limit3 if they get hit so you can get out of the trade full TP with a small bounce.
Inputs:
Account Balance, Risk Percentage, and Leverage: These inputs are used to calculate the position size and risk.
Entry 1, Entry 2, Entry 3, Take Profit (TP), and Stop Loss (SL): These prices are used for calculating position sizes, risk, and profit for up to three entry points.
Calculations:
Risk Amount: Calculated based on the account balance and risk percentage.
Position Sizes (Qty): For each entry point, the position size is determined. The second and third entries have a multiplier (3x for Entry 2, 5x for Entry 3) compared to the first.
Stop Loss and Profit Calculation: The script calculates the potential profit and adjusts the TP levels based on the average entries for Limit 2 and Limit 3.
Margin Calculation: Margin requirements for each position are calculated based on leverage.
Output:
Table Display: A table shows key values like entry prices, position sizes, TP levels, potential profit, and margin requirements for each limit.
Warnings: It includes a liquidation warning and a check for whether the account is at risk of liquidation based on leverage.
Position Type: It automatically detects if the trade is a long or short based on the relationship between TP and SL.
Visualization:
Lines: It draws horizontal lines on the chart to visually represent the entry, TP, and SL levels.
Overall, this script is designed to help traders manage risk and calculate position sizes for multi-level entries using leverage.
Pls drop feedback in the comments.
Chill in WavesChill in Waves is a distinctive technical indicator that integrates both volume and price action, specifically designed to help traders identify key market trends and optimize entry/exit points. What sets this indicator apart is its ability to normalize data using Z-score techniques, making it highly adaptable and reliable across any timeframe, from short-term intraday trading to long-term position strategies.
Key Features and What Makes it Unique:
1. Volume-Weighted Moving Averages (VWMA): At the core of Chill in Waves are two volume-weighted moving averages (VWMA), which highlight periods of strong price movement influenced by high trading volume. The use of VWMA ensures that market activity during times of increased volume has a greater influence on the signals generated. This provides a more accurate reflection of market sentiment compared to traditional moving averages.
2. Z-Score Normalization: One of the key innovations of Chill in Waves is its Z-score normalization of the difference between the fast and slow VWMAs. This normalization helps to smooth out the noise typically present in raw market data, allowing traders to better identify statistically significant deviations from historical price norms. By using normalized data, traders can confidently apply this indicator across all timeframes without the risk of distortion caused by extreme values or outliers. This is especially beneficial for traders who operate in volatile markets.
3. Versatility Across Timeframes: Unlike many indicators that are calibrated for specific timeframes, Chill in Waves is designed for use on all timeframes, from minute-by-minute charts to daily, weekly, and even monthly charts. The Z-score normalization ensures that signals are consistently reliable, no matter the timeframe you are trading in, providing traders with a flexible tool to adapt to any market conditions.
4. Clear Visual Cues for Buy/Sell Signals: Chill in Waves offers straightforward visual cues by plotting Z-scores with color-coded signals: green for potential bullish trends and red for bearish movements. This makes it easy for traders to quickly assess market conditions at a glance, without the need to interpret complex calculations.
5. Customizable Trailing Stop Feature: To further support effective risk management, Chill in Waves includes a customizable trailing stop feature, allowing traders to lock in profits while minimizing downside risk. The flexibility in adjusting the trailing stop percentage ensures that the indicator can be tailored to fit each trader’s risk tolerance and strategy.
Buy and Sell Logic:
Buy Logic: A long position is triggered when both the fast and slow VWMA Z-scores are trending upward, signaling a statistically significant shift toward bullish price action.
Sell Logic: Positions are closed when the trailing stop condition is met or after a predetermined period, ensuring traders can capture gains while limiting exposure to downside risk.
Customization Options:
VWMA Length: Traders can adjust the lengths of the fast and slow VWMA to better suit specific market conditions or individual asset classes.
Bar Color Customization: For additional visual clarity, you can enable an optional feature that changes the color of price bars based on the Z-score difference, providing further insight into market momentum.
Chill in Waves stands out as a flexible and robust indicator for traders across all timeframes, combining the power of volume-weighted moving averages with normalized data to produce accurate and adaptable buy/sell signals. Whether you're a short-term scalper or a long-term trend follower, this indicator offers you the calm confidence needed to ride the waves of market volatility.
Butterfly Harmonic Pattern [TradingFinder] Harmonic Detector🔵 Introduction
The Butterfly Harmonic Pattern is a sophisticated and highly regarded tool in technical analysis, utilized by traders to identify potential reversal points in the financial markets. This pattern is distinguished by its reliance on Fibonacci ratios and geometric configurations, which aid in predicting price movements with remarkable precision.
The origin of the Butterfly Harmonic Pattern can be traced back to the pioneering work of Bryce Gilmore, who is credited with discovering this pattern. Gilmore's extensive research and expertise in Fibonacci ratios laid the groundwork for the identification and application of this pattern in technical analysis.
The Butterfly pattern, like other harmonic patterns, is based on the principle that market movements are not random but follow specific structures and ratios.
The pattern is characterized by a distinct "M" shape in bullish scenarios and a "W" shape in bearish scenarios, each indicating a potential reversal point. These formations are identified by specific Fibonacci retracement and extension levels, making the Butterfly pattern a powerful tool for traders seeking to capitalize on market turning points.
The precise nature of the Butterfly pattern allows for the accurate prediction of target prices and the establishment of strategic entry and exit points, making it an indispensable component of a trader's analytical arsenal.
Bullish :
Bearish :
🔵 How to Use
Like other harmonic patterns, the Butterfly pattern is categorized based on how it forms at the end of an uptrend or downtrend. Unlike the Gartley and Bat patterns, the Butterfly pattern, similar to the Crab pattern, forms outside the wave 3 range at the end of a rally.
🟣 Types of Butterfly Harmonic Patterns
🟣 Bullish Butterfly Pattern
This pattern forms at the end of a downtrend and leads to a trend reversal from a downtrend to an uptrend.
🟣 Bearish Butterfly Pattern
In contrast to the Bullish Butterfly pattern, this pattern forms at the end of an uptrend and warns analysts of a trend reversal to a downtrend. In this case, traders are encouraged to shift their trading stance from buy trades to sell trades.
Advantages and Limitations of the Butterfly Pattern in Technical Analysis :
The Butterfly pattern is considered one of the precise and stable tools in financial market analysis. However, it is always important to pay special attention to the advantages and limitations of each pattern.
Here, we review the advantages and disadvantages of using the Butterfly harmonic pattern :
The main advantage of the Butterfly pattern is providing very accurate signals.
Using Fibonacci golden ratios and geometric rules, the Butterfly pattern identifies patterns accurately and systematically. (This high accuracy significantly helps investors in making trading decisions.)
Identifying this pattern requires expertise and experience in technical analysis.
Recognizing the Butterfly pattern might be complex for beginner traders. (Correct identification of the pattern necessitates mastery over geometric principles and Fibonacci ratios.)
The Butterfly harmonic pattern might issue false trading signals. (Traders usually combine the Butterfly pattern with other technical tools to confirm buy and sell signals.)
🔵 Setting
🟣 Logical Setting
ZigZag Pivot Period : You can adjust the period so that the harmonic patterns are adjusted according to the pivot period you want. This factor is the most important parameter in pattern recognition.
Show Valid Forma t: If this parameter is on "On" mode, only patterns will be displayed that they have exact format and no noise can be seen in them. If "Off" is, the patterns displayed that maybe are noisy and do not exactly correspond to the original pattern.
Show Formation Last Pivot Confirm : if Turned on, you can see this ability of patterns when their last pivot is formed. If this feature is off, it will see the patterns as soon as they are formed. The advantage of this option being clear is less formation of fielded patterns, and it is accompanied by the latest pattern seeing and a sharp reduction in reward to risk.
Period of Formation Last Pivot : Using this parameter you can determine that the last pivot is based on Pivot period.
🟣 Genaral Setting
Show : Enter "On" to display the template and "Off" to not display the template.
Color : Enter the desired color to draw the pattern in this parameter.
LineWidth : You can enter the number 1 or numbers higher than one to adjust the thickness of the drawing lines. This number must be an integer and increases with increasing thickness.
LabelSize : You can adjust the size of the labels by using the "size.auto", "size.tiny", "size.smal", "size.normal", "size.large" or "size.huge" entries.
🟣 Alert Setting
Alert : On / Off
Message Frequency : This string parameter defines the announcement frequency. Choices include: "All" (activates the alert every time the function is called), "Once Per Bar" (activates the alert only on the first call within the bar), and "Once Per Bar Close" (the alert is activated only by a call at the last script execution of the real-time bar upon closing). The default setting is "Once per Bar".
Show Alert Time by Time Zone : The date, hour, and minute you receive in alert messages can be based on any time zone you choose. For example, if you want New York time, you should enter "UTC-4". This input is set to the time zone "UTC" by default.
Guppy Wave [UkutaLabs]█ OVERVIEW
The Guppy Wave Indicator is a collection of Moving Averages that provide insight on current market strength. This is done by plotting a series of 12 Moving Averages and analysing where each one is positioned relative to the others.
In doing this, this script is able to identify short-term moves and give an idea of the current strength and direction of the market.
The aim of this script is to simplify the trading experience of users by automatically displaying a series of useful Moving Averages to provide insight into short-term market strength.
█ USAGE
The Guppy Wave is generated using a series of 12 total Moving Averages composed of 6 Small-Period Moving Averages and 6 Large Period Moving Averages. By measuring the position of each moving average relative to the others, this script provides unique insight into the current strength of the market.
Rather than simply plotting 12 Moving Averages, a color gradient is instead drawn between the Moving Averages to make it easier to visualise the distribution of the Guppy Wave. The color of this gradient changes depending on whether the Small-Period Averages are above or below the Large-Period Averages, allowing traders to see current short-term market strength at a glance.
When the gradient fans out, this indicates a rapid short-term move. When the gradient is thin, this indicates that there is no dominant power in the market.
█ SETTINGS
• Moving Average Type: Determines the type of Moving Average that get plotted (EMA, SMA, WMA, VWMA, HMA, RMA)
• Moving Average Source: Determines the source price used to calculate Moving Averages (open, high, low, close, hl2, hlc3, ohlc4, hlcc4)
• Bearish Color: Determines the color of the gradient when Small-Period MAs are above Large-Period MAs.
• Bullish Color: Determines the color of the gradient when Small-Period MAs are below Large-Period MAs.
Cumulative Delta Volume WaveIntroducing an Enhanced Version of the CDV by LonesomeTheBlue
For the original version and description check this link:
What Makes This Version Different than the original?
This enhanced version of the CDV indicator incorporates advanced signal processing techniques to bring new depth to market analysis.
Standard Deviation Bands and EMAs: These additions to the CDV offer a visual representation of significant market movements—highlighting major pumps and dumps, as well as identifying potential support and resistance levels.
Color-Coded Insights: The standard deviation bands utilize color coding based on signal processing principles. This feature becomes increasingly useful the more you zoom out, making it easier to observe and interpret market waves.
Market Maker Activity: By examining fluctuations within the standard deviation bands, traders can gauge when Market Makers are actively maneuvering to establish their long and short positions, often at the expense of retail traders.
EMA Support and Resistance: The embedded Exponential Moving Averages (EMAs) serve as dynamic support and resistance levels. Analyzing these can help traders determine the continuing strength of a market move, whether bullish or bearish.
Visual Guide to the Basics
For a clearer understanding of what this enhanced indicator can show, please refer to the image below:
And in addition to all the above one can detect relevant W and M structures way easier with this indicator ;)
On Balance Volume WaveIntroducing an Enhanced Version of the Classic OBV Indicator
The On-Balance Volume (OBV) indicator is a well-known tool among traders, celebrated for its ability to track momentum by using volume flow to predict changes in stock price. For an overview of the original OBV indicator, please visit: www.tradingview.com .
What Makes This Version Different?
This enhanced version of the OBV indicator incorporates advanced signal processing techniques to bring new depth to market analysis. Here's what sets it apart:
Standard Deviation Bands and EMAs: These additions to the OBV offer a visual representation of significant market movements—highlighting major pumps and dumps, as well as identifying potential support and resistance levels.
Color-Coded Insights: The standard deviation bands utilize color coding based on signal processing principles. This feature becomes increasingly useful the more you zoom out, making it easier to observe and interpret market waves.
Market Maker Activity: By examining fluctuations within the standard deviation bands, traders can gauge when Market Makers are actively maneuvering to establish their long and short positions, often at the expense of retail traders.
EMA Support and Resistance: The embedded Exponential Moving Averages (EMAs) serve as dynamic support and resistance levels. Analyzing these can help traders determine the continuing strength of a market move, whether bullish or bearish.
Visual Guide to the Basics
For a clearer understanding of what this enhanced indicator can show, please refer to the image below:
And in addition to all the above one can detect relevant W and M structures way easier with this indicator ;)
[MAD] Harmonic Wave Fourier AnalysisThis script uses Fourier Analysis with additional postcalculations to draw a plot which displays the Amplitude-Change of the Fouriers
Parameter Settings:
You can set the number of data points to analyze
the period to check for extremes.
Fourier Transform: The script breaks down the time series data into its frequency components using cosine and sine calculations.
Harmonic Analysis: It calculates the strength and phase of each frequency component, producing harmonic waves.
Amplitude Change: It determines the change in amplitude between peaks and troughs for each harmonic.
Latest Value Extraction: The script selects the middle amplitude change as the latest data point.
High/Low Points: Finds the maximum and minimum amplitude changes over a specified period.
Visualization: It plots the latest amplitude change with a color that indicates its value relative to the identified extremes.
splitted by 3 Blue plots (1/3 1/2 2/3 from min to max)
How to trade?
May go for retests to the blue lines after big moves.
See this script as braindump of an idea, so its just a concept :-)
MEO Reversal and AlertHello; This indicator offers a suite of diverse analytical features. These features are typically triggered in unusual overbought and oversold conditions and are primarily used to identify excessive buying or selling and for general monitoring in suspicious cases.
Below is a general overview of the various features of this indicator:
RSI Overbought and Oversold Zones: This feature determines whether the RSI is in the overbought or oversold zones.
RSI Peak and Trough Points: Identifies the peak and trough points of the RSI.
Stoch RSI Peak and Trough Points: Identifies the peak and trough points of the Stoch RSI.
MACD Peak and Trough Points: Identifies the peak and trough points of the MACD.
MACD Overflow Points: Detects the overflow points of the MACD.
WaveTrend Reversal Points: Identifies the reversal points of the WaveTrend.
Money Flow Index (MFI) Potential Reversals: Determines the potential reversal points of the MFI.
Z-Score Outliers: Identifies the deviation points of the Z-Score.
Momentum Reversal Points: Identifies the reversal points of Momentum.
SR Support Resistance Breakouts: Determines the breakout points of support and resistance.
Rate of Change (ROC) Rapid Price Change Points: Identifies the rapid price change points of the ROC.
You can set alert conditions for each feature.
The inspiration for this indicator came from the idea of making a few indicators easier and faster to use together. Instead of tracking three basic indicators as shown in the image, I thought it might be more straightforward to follow the Reversal indicator. I imagined this could generally be a handy tip-off indicator and wanted to share it with you. Please write if you have any questions or if there's something you'd like to ask.
However, remember that this should not be considered as investment advice and should not be used for direct buying or selling operations. Each trade is under the individual user's responsibility.
For frequently asked questions, you can check the TradingView support page here: tr.tradingview.com
TTM Waves ABC ATR AO MOM SQZ//All code picked from many indicators, if you recognize your code, pls comment so people can see your awesome work! I only edited and added them all together so people don't use all their indicator slots. Hope this indicator helps as many people as it can. LFG!!!
AO (Awesome Oscillator) Useful to find potential reversals in trend.
MOM (Momentum) An oscillator that measures momentum.
ATR (Average True Range) Measures the upside and downside from the average price movement occuring. 1 ATR is the general measurement. Many traders use 2ATR to set a stop and 4ATR to set take profit from their entry based on current reading from the ATR.
SQZ ( TTM Squeeze) Measures when bollinger bands have left the interior of the Keltner Channel in an attempt to predict volatility thats about to happen to either side. Green = Move is probably about to happen.
TTM Waves ( Waves A, B, and C) Measure the previous candles to determine chop, positive or negative trends. C measures the previous 30 candles or so, B the last 15 or so, and A measures the last 8 or so. You can use all three or just one. You can sneak in a move if the 2 fastest ones have moved into your preferred area. (Positive or Negative) If the wave is not fully positve or negative then that is probably chop.
-Penguincryptic
NEoWave ChartAn automated wave chart for NEoWave wave analysis. This is an automated wave chart plotter that help you to find the current psychological trend and forecast the next one. This Indicator uses the concept of plotting wave charts as per the NeoWave method invented by Glenn Neely in 1990 in the “Mastering Elliott Wave” book. NEoWave is a advanced version of elliott wave theory, which solve the lots of drawback's and issues' of elliott wave theory.
The Logic and Concept used in Indicator
This indictor uses the logic of plotting wave chart as discussed in “Mastering Elliott Wave” book, According to “Mastering Elliott Wave” book to draw a wave chart draw a line from high to low or low to high in order that they occurred, and this indicator plot the line accurately from high to low or low to high in order they occurred.
Some Important Features
1. This indicator can draw wave chart from 5 Seconds to 5 Year or use any custom timeframe of your choice.
2. Use any timeframe wave chart on any timeframe cash data, like use monthly cash data to draw 2.5 years or 5 years wave chart.
3. Do the easy back testing with easy drag tool.
4. Customize wave chart settings based on your requirement.
5. Wave chart will be plotted on any type of charts like candlestick or bar chart.
6. Custom settings to hide other charts, like you can hide bar or candlestick chart, while using wave analysis.
7. Realtime plotting of wave chart from 5 seconds to 5 year.
Features to be added in future update
1. Show Monowave Counts.
2. Show Complexity levels.
3. Show Price and Time.
4. Show Starting point of patterns.
How to use this wave chart?
1. Use the log scale on wave chart. Use Alt + L to use logarithmic scale on chart.
2. Use log Fibonacci on wave chart, just open the settings of Fibonacci channel and check on "Fib channel based on log scale"
3. Find the correct starting point to mark the neowave patterns.
4. Apply the neowave rules as discussed in “Mastering Elliott Wave” book and forecast the market.
Note
If you want to check Daily or any higher timeframe wave chart use cash chart and if you want to check any other timeframe from 5 seconds to any intraday timeframe then use future's data as suggested by Mr. Glen Neely.
QG-Trend Pullback StrategyI wanted to test the pullback strategy shown by TradePro and 5 minute scalping channels on the YT.
So here it is, worked on USDCHF pair best and not so much on other forex pairs on 15 min or 5 min charts as shown in strategy.
Entry rules for Long:
Price above EMA200 or G channel as trend filter
Donchian trend ribbon in retracement or red in color
Wavetrend cross below a threshold level below zeroline.
Opposite rules for Shorts.
The SL and TP based on the ATR multiplier and a TP as RR ratio to SL.
Attaching the equity curve on USDCHF 15 min chart where it worked best.
Multi Entry Signal Strategy by TradeSmartThis strategy is intended to test different entry signals. You can use 13 different entry signals in the strategy.
Available signals with all their settings:
Heikin Ashi
RSI + EMA
Wavetrend
MACD
Stochastic RSI
Squeeze Momentum
Kairi Relative Index
SSL
Supertrend
Parabolic SAR
Chandelier Exit
Directional Movement Index
Quantitative Qualitative Estimation
For exact rules of entries please relate to the tooltips of each entry signal. All the signals can be used together or separately in the strategy.
Additional settings that can be used:
Trend Filter (limit long or short entries based on a moving average of your choice)
Exit Strategy settings (ATR is used to determine stop loss and take profit levels)
Trailing Loss Setups (you can use 3 different types of trailing losses)
Setups (you can set Long and Short entries as well as the order size based on either Capital % or Risk %)
Date Range (you can limit trades to specific date ranges)
Trading Time (you can limit on which days to trade)
Time Segmented Volume, TSV Cipher + TSITHE IDEA:
TSV is a leading indicator based on the Volume, so it can be used to dectect price movements even before other indicators.
You can read about the Time Segmented Volume and the concept how to use it here:
From my observations, it seems like you can use this indicator in the similar way to "oscilators" as well.
So the idea is to use the signal and run in trough:
1) WaveTrend - to produce "green" and "red" dots.
2) TSI
Both oscillators produce two signals that when crossed might be a buy/sell signal.
Hope you like the idea.
WARNING: Use the indicator for your own risk, it was released for educational purposes.
Auto Hosoda Waves by TheSocialCryptoClubName: Auto Hosoda Waves
Category: Indicator
Timeframe: Any Timeframe.
Description: Auto Hosoda Waves uses Zig-Zag to calculate bullish and bearish impulses.It then considers the last Zig-Zag movements to calculate the ABC pattern
Suggested usage: Use on any timeframe. From the configuration of the indicator it is possible to calculate waves also from past ABC patterns, so as to adapt to the trader's intuition.
Technical Details: Internally uses the Zig-Zag indicator for understanding the bounces. From bounces identifies the ABC patterns and uses the Hosoda Waves formulas to print the levels on the screen.
Credits:
- Technique has been explained by Corrado Rondelli in “Ichimoku Kinko Hyo. Operatività sui mercati”
- It is based on the Zig-Zag indicator of TradingView to calculate the Zig-Zag.
- Hosoda Waves calculation from Hosoda Waves by Rexio and modified by PawTar
SB Wave Rider PremiumBased on the public version of the script with additional options.
This script seeks to buy the top, and increase its speed (position) on its ride to the bottom of the wave. Once it hits bottom, the surfer is able to bottom turn and make its way back up the wave. At the top it will deleverage and exit its positions starting the cycle over again.
In this version you can add existing positions and the script will take over. You set the date to todays date and it will begin making trade recommendations.
This version will also provide you with alerts for the following.
Open a position
Add additional positions
Increase trailing stop
Close out positions
Elliott Wave AnalysisInitially, Elliott wave analysis is designed to simplify and increase the objectivity of graph analysis using the Elliott method. Probably, this indicator can be successfully used in trading without knowing the Elliott method.
The indicator is based on a supertrend. Supertrends are built in accordance with the Fibonacci grid. The degree of waves in the indicator settings corresponds to a 1-hour timeframe - this is the main mode of working with the indicator. I also recommend using weekly (for evaluating large movements) and 1-minute timeframes.
When using other timeframes, the baseline of the indicator will correspond to:
1 min-Submicro
5 minutes-Micro
15 minutes-Subminuette
1 hour-Minuette
4 hours-Minute
Day-Minor
Week-Intermediate
Month-Primary
Those who are well versed in the Elliott method can see that the waves fall on the indicator almost perfectly. To demonstrate this, I put the markup on the graph
MFI Waves w LevelsThis is a Money Flow Index oscillating wave indicator that also has preset levels that can be adjusted by the user in the settings. The levels indicate how deep or high the waves are moving to
i use this indicator when scalping and on all time frame charts, i like to watch for certain patterns forming either at the lower levels for longs or at the higher levels for shorts.
This indicator is smoothed for Heikin Ashi candles, and does RSI in the calculation. MFI uses volume and price change.
MechaOscillatorWhat is MechaOscillator?
MechaOscillator was created as a companion to our main script MechaAlgo. Using MechaOscillator along with MechaAlgo will allow you to boost your overall understanding of any market, and make more informed decisions as a trader.
Feature List
Built-In Improved WaveTrend Oscillator
Buy & Sell Signals
Bullish and Bearish Divergences
Short and Long Term Trend Indicators
Trend Strength Indicator
Market State Indicator
Real Time Informational Dashboard
Bullish and Bearish Breakout Indicator
Many More Features to Come!
By using this script you acknowledge that MechaOscillator cannot guarantee you profit, and that this product was only created in attempt to benefit traders. You also acknowledge that past performance is not indicative of future results, and that the experience of other users or what you see online may not always be your experience.
John Ehlers - The Price RadioPrice curves consist of much noise and little signal. For separating the latter from the former, John Ehlers proposed in the Stocks&Commodities May 2021 issue an unusual approach: Treat the price curve like a radio wave. Apply AM and FM demodulating technology for separating trade signals from the underlying noise.
reference: financial-hacker.com
FEJ - DogeMarginFEJ - DogeMargin ist ein All-in-One Indikator.
Mit dem ihr euch praktisch das Upgrade auf eine bezahlte Tradingview Version sparen könnt.
- Wave-Detector: Bestehend aus einem innovativen Wave-Trenddetector mit dessen hilfe es sehr leicht ist einen Trendwechsel und die vorraussichtliche Stärke des kommenden Moves zu erkennen.
- NMA: Eine dynamische Trendlinie um die stärke der Signale zu überprüfen.
- Channel: Um potenzielle Trendwenden bzw. Überkaufte oder Überverkaufte Situationen zu erkennen.
- Golden- & Deathcross: SMA basierende Crosses um potenzielle Trendwendepunkte zu erkennen und bestehende Signale zu überprüfen. Die SMA Crosses sind in einem festgelegten Timeframe, welcher sich in den Einstellungen anpassen lässt. Die SMA´s sind optional einblendbar. In einem Update folgen noch MACD Crosses.
- Volume Candles: Dieser passt die Farbe der Candles entsprechend dem aktuellen Volumen und dessen Richtung an.
Dunkel Violett - Der Preis sinkt und das Volumen ist größer als 200% des Durchschnitts der letzten 20 Tage - Stark Bearish
Violett - Der Preis sinkt und das Volumen ist zwischen 50% und 200% des Durchschnitts der letzten 20 Tage - Volumen ist weder stark noch schwach
Helles Violett - Der Preis sinkt und das Volumen ist geringer 50% des Durchschnitts der letzten 20 Tage - Wenig Support für die aktuellen Preisbewegungen.
Aqua - Der Preis steigt und das Volumen ist größer als 200% des Durchschnitts der letzten 20 Tage - Stark Bullish
Blau - Der Preis steigt und das Volumen ist zwischen 50% und 200% des Durchschnitts der letzten 20 Tage - Volumen ist weder stark noch schwach
Helles Blau - Der Preis steigt und das Volumen ist geringer 50% des Durchschnitts der letzten 20 Tage - Wenig Support für die aktuellen Preisbewegungen.
- S & R Lines: Dieser Indikator zeigt die für diesen Timeframe aktuellen Support und Resistance Linien an.
- EMA Ribbons: Dieser Indikator zeigt ein Ribbon für den aktuellen Timeframe an.
Wave
Mit Hilfe der Welle in der Mitte lassen sich Trendwenden erkennen.Die Trendwende ist besonders stark, wenn das Signal bei einem Bull-Signal unterhalb der gelben NMA-Line liegt ; bei einem Bear-Signaloberhalb der gelben NMA-Linie liegt.
Wenn Kurs in folge eines Signals nach der NMA schließt, deutet das auf einen Trendwechsel hin. Bis dahin
Mit hilfe des Dogeprotocol lassen sich diese Signale noch weiter verbessern undgegenprüfen
Channel
NMA
Golden- & Deathcross
Zeigt an wo sich entweder ein SMA Golden- oder Death-Cross befindet
WICHTIG: Der TimeFrame für die Crosses ist festgelegt - Standardmäßig auf 4h (240m)
Es macht am meisten Sinn, den TF auf 1/10 deines Beobachtungszeitramens zu stellen.
2x SMA´s
Volume Candles
S & R Lines
EMA Ribbos
____________________________________________________________________________________________________________________________
English:
FEJ - DogeMargin is an all-in-one indicator.
With which you practically do that Upgrading to a paid Tradingview version can save you money.
- Wave detector: Consists of an innovative wave trend detector with its help it is very easy to change the trend and the anticipated Recognize the strength of the upcoming move.
- NMA: A dynamic trend line to check the strength of the signals.
- Channel: Around potential trend reversals or overbought or oversold situations to recognize.
- Golden & Death cross: SMA based crosses around potential trend turning points to recognize and to check existing signals. The SMA Crosses are in a fixed timeframe, which can be found in the settings can be adjusted. The SMAs can optionally be faded in. MACD Crosses will follow in an update.
- Volume Candles: This adjusts the color of the candles according to the current volume and its direction.
Dark Purple - The price is falling and the volume is greater than 200% of the Last 20 Day Average - Strongly Bearish
Purple - The price is going down and the volume is between 50% and 200% of the Last 20 days average - volume is neither strong nor weak
Light purple - the price goes down and the volume is less than 50% of the Average of the last 20 days - Little support for the current ones Price movements.
Aqua - The price goes up and the volume is greater than 200% of the Last 20 days average - Strong Bullish
Blue - The price is increasing and the volume is between 50% and 200% of the Last 20 days average - volume is neither strong nor weak
Light blue - the price goes up and the volume is less 50% of the Average of the last 20 days - Little support for the current ones Price movements.
- S & R Lines: This indicator shows the current support and for this timeframe
Resistance lines on.
- EMA Ribbons: This indicator shows a ribbon for the current timeframe.
Wave
Trend reversals can be seen with the help of the wave in the middle.
The turnaround is particularly strong when the signal is at one
Bull signal is below the yellow NMA line; on a bear signal is above the yellow NMA line.
If course closes on a signal after the NMA , it indicates one
Change of trend. Until then
With the help of the Dogeprotocol, these signals can be improved even further
double check
Channel
NMA
Golden & Death Cross
Shows where either a SMA golden or death cross is located
IMPORTANT: The timeframe für crosses is fixed - by default to 4h (240m)
It makes the most sense to set the TF to 1/10 of your observation timeframe.
2x SMAs
Volume candles
S&R Lines
EMA Ribbos
2T sine wave + correlation ranks v1This indicator produces up to 6 sinusoids very useful in the cyclical analysis, moreover a correlation index has been inserted to understand which cycle is more correlated to the price trend.
The degree of correlation is represented by the small dots at the end of the waves.
//The highest is the most correlated; all the others to follow
Orion AlgoOrion Algo is a next-gen trading algorithm designed to help traders find the highs and lows of the market before, during, and after they happen. We wanted to give an indicator to people that was simple to use. In fact we created the algorithm in such a way that it currently only needs a single input from the user. Since no indicator can predict the market perfectly, Orion should be used as just another tool (although quite a sharp one) for you to trade with. Fundamental knowledge of price action and TA should be used with Orion Algo.
Being an oscillator, Orion currently has a bias towards market volatility. So you will want to be trading markets over 30% volatility. We have plans to develop future versions that take this into account and adjust automatically for dead conditions. Also, while there are some similarities across all oscillators, what sets ours apart is the prediction curve. The prediction curve looks at the current signal values and gives it a relative score to approximate tops and bottoms 1-2 bars ahead of the signal curve. We also designed a velocity curve that attempts to predict the signal curve 2+ bars ahead. You can find the relative change in velocity in the Info panel. The bottom momentum wave is based on the signal curve and helps find overall market direction of higher time-frames while in a lower one.
Future Roadmap:
Create secondary on-bar indicator to pair with Orion Algo
Automatically adjust internal variables based on market volatility
Indicator style selection
Simple Strategy:
1. Start at a high time-frame to get an overview of the market you are wanting to enter. Daily is usually a good starting time.
2. If you can, add Orion to a second chart with a lower time-frame such as 4H.
3. Check the lower time frame to find potential medium term entry points based on where the trend was heading from the higher time-frame.
4. Step even lower to the 1H to find your optimal entry based on the higher times and technical analysis of the charts (support/resistance, patterns, etc)
5. The momentum wave can be used to find overall trend of the market. When it starts curving up, the market is bullish. When it curves down, the market could be bearish.
Intermediate Strategy:
1. Use simple strategy first.
2. Use the Prediction and ∆v curves to see future reversals in the works.
3. You can use these curves as potential entries as well as exit points.
4. Take into account potential divergence of the signal lines and price action.
Settings and How to Use them:
User Agreement – Orion Algo is a tool for you to use while trading. We aren’t responsible for losses OR the gains you make with it. By clicking the checkbox on the left you are agreeing to the terms.
Super Smooth – Smooths the main signal line based on the value inside the box. Lower values shift the pivot points to the left but also make things more noisy. Higher values move things to the right making it lag a bit more while creating a smoother signal. 8 is a good value to start with.
Theme – Changes the color scheme of Orion.
Info – Turns on a dashboard with useful stats, such as Delta v, Volatility, Rsi, etc. Changing the value box will move the dashboard left and right.
Pivots – Toggles main bull/bear dots.
Prediction – A secondary prediction model that attempts to predict a reversal before it happens (0-2bars). This can be noisy some times so make your best judgement. Curve will toggle a curve view of the prediction. Pivots will toggle bull/bear dots.
∆v – Delta v (change in velocity). This shows momentum of the signal. Crossing 0 signals a reversal. If you see the delta v changing direction, it may signify a reversal in the several bars depending on the overall momentum of the market.
Divergence – Toggles divergence lines. Hidden will show hidden divergences. Cross will show divergences that cross the 0 line.
Momentum Wave – Uses the signal as a macro trend indicator. Changes in direction of the wave can signify macro changes in the market. Average will toggle an averaging algorithm of the momentum waves and makes it easy to understand.
OBOS – Overbought/Oversold lines. Dyn will convert them to dynamic OBOS lines. The value box will adjust the smoothing.