Midpoint Candle and BodyThis script provides the options to mark the:
1. Midpoint of the candle body and/or
2. Midpoint of the full candle (including the wicks)
Works on all timeframes. This indicator can be used to help determine the mean (midpoint) reversion of price.
-
Cari dalam skrip untuk "Candlestick"
LPP by NanoLimitThis indicator allows you to create a line like the MA but for a percentage below the price line
Long and Short Positions on EMA and Pivot Cross with Candle Size
This Pine Script indicator identifies long and short trading signals based on specific criteria involving candle body size, EMA, and pivot levels.
Long Position ("Buy" Signal): A "Buy" signal is triggered when a green candle (close > open) with a body size of at least 10 crosses above the 9 EMA and any of the daily pivot levels (R1, R2, R3, R4, R5, S1, S2, S3, S4, S5).
Short Position ("Sell" Signal): A "Sell" signal is triggered when a red candle (close < open) with a body size of at least 10 crosses below the 9 EMA and any of the pivot levels.
The script plots only the "Buy" and "Sell" signals on the chart, without displaying the EMA or pivot levels.
principles of fu### Detailed Description of the Script
#### **Title:**
"**Bullish and Bearish Engulfing with Conditional Rays and Wick Markers**"
#### **Purpose:**
This Pine Script indicator identifies and marks **bullish and bearish engulfing candle patterns** on a price chart. Additionally, it plots **two rays** (lines) for each detected pattern: one at the wick's extremity and another at the midpoint of the wick and the candle body. The indicator manages the display of these rays based on specific conditions, ensuring they remain on the chart until price action invalidates them.
#### **Components and Functionality:**
1. **Inputs and Customization:**
- **Lookback Period:** The script looks back 100 candles to manage and maintain rays on the chart.
- **Ray Colors:**
- `Bullish Ray Color`: Grey (default) for the ray at the low wick of the bullish engulfing candle.
- `Bearish Ray Color`: Grey (default) for the ray at the high wick of the bearish engulfing candle.
- `Bullish Midpoint Ray Color`: Blue (default) for the ray plotted at the midpoint between the body low and the low wick of the bullish engulfing candle.
- `Bearish Midpoint Ray Color`: Orange (default) for the ray plotted at the midpoint between the body high and the high wick of the bearish engulfing candle.
2. **Engulfing Candle Detection:**
- **Bullish Engulfing:**
- Occurs when a previous bearish candle (closing lower than its open) is followed by a candle that closes above the high of the previous candle and has a low equal to or lower than the previous candle's low.
- **Bearish Engulfing:**
- Occurs when a previous bullish candle (closing higher than its open) is followed by a candle that closes below the low of the previous candle and has a high equal to or higher than the previous candle's high.
3. **Ray Plotting:**
- **Wick Rays:**
- For a **bullish engulfing candle**, a ray is plotted at the **low wick** of the bullish candle.
- For a **bearish engulfing candle**, a ray is plotted at the **high wick** of the bearish candle.
- **Midpoint Rays:**
- For a **bullish engulfing candle**, a midpoint ray is plotted at the midpoint between the **body low** (the lower of the open or close) and the **low wick**.
- For a **bearish engulfing candle**, a midpoint ray is plotted at the midpoint between the **body high** (the higher of the open or close) and the **high wick**.
4. **Ray Management and Deletion:**
- **Bullish Rays:**
- The rays (both wick and midpoint) are removed if a subsequent candle's close falls below the **bullish ray** level (low wick of the bullish engulfing candle).
- **Bearish Rays:**
- The rays (both wick and midpoint) are removed if a subsequent candle's close rises above the **bearish ray** level (high wick of the bearish engulfing candle).
5. **Visualization on the Chart:**
- **Bullish Engulfing Signal:**
- A **plus sign** in **dark grey** is plotted below the candle to signify a detected bullish engulfing pattern.
- **Bearish Engulfing Signal:**
- An **X** in **dark grey** is plotted above the candle to signify a detected bearish engulfing pattern.
### **Overall Workflow:**
1. The script detects bullish and bearish engulfing patterns based on specific candle relationships.
2. It then plots rays corresponding to the wicks and midpoints of these engulfing candles.
3. These rays remain on the chart until the price invalidates them, ensuring that only relevant and active levels are displayed to the trader.
This indicator provides traders with a visual tool to identify key reversal patterns (engulfing patterns) and the critical price levels associated with them, which can be useful for making trading decisions.
Retest Confirm Point TibbuCreating a "Retest Confirm Point" indicator that generates buy and sell signals involves defining criteria to confirm that a price retest is valid before issuing a trade signal. This generally requires identifying a key level (such as support, resistance, or a trendline), detecting a retest of this level, and then confirming the validity of the retest.
Here’s a Pine Script example to help you create such an indicator. This script identifies and confirms retests of previous highs and lows, and generates buy and sell signals based on those retests: Explanation:
Recent High and Low:
The script identifies the highest and lowest prices over a specified lookback period.
These levels are plotted on the chart as reference points.
Retest Conditions:
Retest High: The closing price is within a buffer range around the recent high.
Retest Low: The closing price is within a buffer range around the recent low.
Confirmation:
Confirm High: The closing price reaches a new high over a set number of bars after the retest condition.
Confirm Low: The closing price reaches a new low over a set number of bars after the retest condition.
Signals:
Buy Signal: Issued when a confirmed retest of the recent high occurs.
Sell Signal: Issued when a confirmed retest of the recent low occurs.
Customization:
Lookback Period: Adjust to determine the historical range for finding recent highs and lows.
Confirmation Bars: Change the number of bars used to confirm the retest.
Retest Buffer: Adjust the percentage buffer to fine-tune the retest conditions.
Testing and Optimization:
Backtest: Always backtest the strategy on historical data to ensure it behaves as expected.
Adjust Parameters: Modify parameters based on the asset, timeframe, and market conditions.
Feel free to modify this script further based on your specific trading strategy and needs. If you need help with any additional features or further customization, let me know!
ChatGPT can make mistakes. Check important info.
PCSPLType A Candle:
This candle is labeled "A" if its high price is higher than the high price of the previous candle, and its low price is also higher than the low price of the previous candle.
In simpler terms, the entire candle (both the top and bottom) is above the previous candle.
Type B Candle:
This candle is labeled "B" if its high price is lower than the high price of the previous candle, and its low price is also lower than the low price of the previous candle.
In simpler terms, the entire candle (both the top and bottom) is below the previous candle.
Type C Candle:
This candle is labeled "C" if its high price is higher than the high price of the previous candle, and its low price is lower than the low price of the previous candle.
In simpler terms, this candle has a higher high and a lower low compared to the previous candle, indicating a larger range or volatility.
Type D Candle:
This candle is labeled "D" if its high price is lower than the high price of the previous candle, and its low price is higher than the low price of the previous candle.
In simpler terms, this candle has a lower high and a higher low compared to the previous candle, indicating a smaller range or consolidation.
Fibo Level DailyOverview
The "Fibo Level Daily" strategy is designed for trading Bitcoin (BTC) using the 1-hour timeframe. This strategy relies on Fibonacci levels calculated from the previous day's range and determines entry and exit points based on whether the previous daily candle was bullish or bearish.
How It Works
Fibonacci Levels Calculation:
The indicator calculates Fibonacci levels (0.8, 0.5, and 0.2) based on the high and low of the previous day.
The levels are calculated as follows:
0.8: This level is calculated by multiplying the difference between the previous day's high and low by 0.8 and adding the result to the previous day's low.
0.5: This is the midpoint of the previous day's range.
0.2: This level is calculated by multiplying the difference between the previous day's high and low by 0.2 and adding the result to the previous day's low.
Identifying the Previous Day's Trend:
The indicator checks if the previous daily candle closed bullish (close greater than open) or bearish (close less than open).
Setting Entry and Take Profit Levels:
If the previous daily candle was bearish:
Sell Entry: Wait for the price to rise to the 0.5 level (midpoint of the previous day's range) to enter a sell position.
Take Profit: The profit target is set at the 0.2 level.
If the previous daily candle was bullish:
Buy Entry: Wait for the price to drop to the 0.5 level (midpoint of the previous day's range) to enter a buy position.
Take Profit: The profit target is set at the 0.8 level.
Visual Representation on the Chart:
The indicator draws horizontal lines on the chart representing the Fibonacci levels (0.8, 0.5, and 0.2) from the previous day. These lines help visualize entry and exit points clearly.
Additionally, the last 15 minutes of the daily session are highlighted with a light red background to indicate the session's end.
Conditions of Use:
Timeframe: This indicator is specifically designed for use on the 1-hour timeframe.
Assets: While it can be used on any asset, it is optimized for trading Bitcoin (BTC).
Steps to Use the Indicator
Add the Indicator:
Insert the "Fibo Level Daily" indicator script into your trading platform (such as TradingView).
Select Timeframe:
Change the chart timeframe to 1 hour.
Interpret the Levels:
Observe the horizontal lines drawn on the chart representing the Fibonacci levels.
Identify whether the previous daily candle was bullish or bearish.
Wait for the Entry Price:
For a bearish previous daily candle: Wait for the price to rise to the 0.5 level to enter a sell position.
For a bullish previous daily candle: Wait for the price to drop to the 0.5 level to enter a buy position.
Set the Profit Target:
For a sell: Set your profit target at the 0.2 level.
For a buy: Set your profit target at the 0.8 level.
Execute the Trade:
Initiate the trade once the price reaches the entry level and set your take profit according to the identified trend from the previous day.
Conclusion
The "Fibo Level Daily" strategy provides a clear and precise methodology for identifying entry and exit points in Bitcoin using Fibonacci levels. By following this step-by-step guide, any trader can take advantage of market movements based on the previous day's price action, optimizing their trading opportunities on the 1-hour timeframe.
The Magic LineThis script is based on the simple 2 or 3 candle entry model taught by Armando "The Professor".
This strategy will work best on the 1hr timeframe or higher and you can also add a MA on your chart to identify direction of trend and trade with the trend. For example, if price is above the 50 SMA, you can opt to only look for 'buy' signals. If price is below the 50 SMA, you can opt to only look for 'sell' signals.
The default setting is to wait for 3 consecutive candles of either bullish or bearish sentiment before printing a buy or sell signal. This can be changed to any number you would like but typically 3 works best, as long as you're using the 1hr timeframe or higher.
Ex: If there are 3 green (bullish) candles print in a row, a 'sell' signal will print, and the entry line will be one tick below the open of the previous green candle. You can use that line as your entry.
For your stop loss, you can try to use the most recent swing high (for sells) or swing low (for buys). You can also use nearby support/resistance levels, or even the PSAR as another way to determine your stop loss.
If there are more than 3 consecutive candles with the same sentiment, signals will continue to print until the streak ends at which point the counter will restart, and the idea is to take the most recent signal as your entry. Limit/Stop entries work best as you can just let price come down to the signal line that is drawn.
Comment below if you have any questions! Good luck!
ABC PatternThe indicator, named "ABC Pattern," is designed to identify specific bullish and bearish patterns on a price chart. Here's a simple explanation of what it does:
What the Indicator Does:
1. Identifies Bullish Patterns:
- The indicator looks for a sequence of candles where certain conditions are met to form a bullish pattern.
- When it detects a bullish pattern, it colors the candle that occurred three periods ago in gold.
2. Identifies Bearish Patterns:
- Similarly, it looks for a sequence of candles where certain conditions are met to form a bearish pattern.
- When it detects a bearish pattern, it colors the candle that occurred three periods ago in pinkish.
3. Creates Alerts:
- Whenever a bullish or bearish pattern is identified, the indicator generates an alert.
- The alert message includes the type of pattern (bullish or bearish), the price level at the time of detection, and the date and time of the pattern formation.
Detailed Conditions:
- Bullish Pattern:
- The current candle closes higher than it opened.
- The previous candle also closes higher than it opened.
- Two candles ago, the candle closed lower than it opened.
- Three candles ago, the candle closed higher than it opened.
- The highest price of two candles ago is below the current close.
- The lowest price of three candles ago is above the close of two candles ago.
- The highest price of three candles ago is below the current close.
- Bearish Pattern:
- The current candle closes lower than it opened.
- The previous candle also closes lower than it opened.
- Two candles ago, the candle closed higher than it opened.
- Three candles ago, the candle closed lower than it opened.
- The lowest price of two candles ago is above the current close.
- The highest price of three candles ago is below the close of two candles ago.
- The lowest price of three candles ago is above the current close.
Visual Representation:
- Gold Color: Indicates a detected bullish pattern.
- Pinkish Color: Indicates a detected bearish pattern.
Alerts:
- Alert Message: "ABC Pattern has appeared!"
- Detailed Alerts: Include the type of pattern, price level, and timestamp for better analysis and decision-making.
This indicator helps traders visually and audibly detect potential bullish and bearish patterns on their charts, aiding in making more informed trading decisions.
Weekly & Daily High/Low AnalyzerOverview
The Weekly & Daily High/Low Analyzer indicator is designed to analyze the likelihood of achieving the High or Low of the day or week based on user-specified parameters. This tool is ideal for traders who want to identify potential turning points in the market by examining historical data.
Features
Weekly High/Low Analysis: Available exclusively on the daily timeframe, this feature allows users to analyze past weeks to determine the probability of reaching the weekly high or low. Users can specify the number of weeks to analyze via the "Number of Weeks to Calculate" input field. Setting this field to 0 includes all available historical data. Note that the current week is excluded from the analysis as it is incomplete, and weekends (Saturdays and Sundays) are not analyzed.
Daily High/Low Analysis: Available exclusively on the 1-hour timeframe, this feature analyzes past days to determine the probability of reaching the daily high or low. Users can specify the number of days to analyze via the "Number of Days to Calculate" input field. Setting this field to 0 includes all available historical data. The current day is excluded from the analysis as it is incomplete, and weekends (Saturdays and Sundays) are not analyzed.
Visualization
A table is displayed in the top right corner of the chart, showing the results of the analysis. The table highlights the hours or days with the highest probabilities in darker colors for easy identification.
How It Works
Weekly Analysis: On the daily timeframe, the script analyzes each week's high and low points. It differentiates between bullish and bearish weeks and calculates the probability of reaching the high or low on each day of the week (Monday to Friday).
Daily Analysis: On the 1-hour timeframe, the script examines the high and low points of each trading day. It differentiates between bullish and bearish days and calculates the probability of reaching the high or low at each hour of the trading day.
Inputs
Number of Weeks to Calculate: An integer input that determines the number of past weeks to include in the analysis. Setting this to 0 includes all historical data.
Number of Days to Calculate: An integer input that determines the number of past days to include in the analysis. Setting this to 0 includes all historical data.
Calculation and Display
The indicator uses arrays to count the occurrences of highs and lows on bullish and bearish weeks and days.
Probabilities are calculated and displayed in a table, with each row representing a day (for weekly analysis) or an hour (for daily analysis).
Colors in the table indicate the strength of the probability, making it easy to identify significant patterns.
Implementation
The script includes detailed logic for resetting values at the start of a new week or day, capturing opening and closing prices, and counting occurrences of highs and lows. The table displays data in a user-friendly format, with gradient colors indicating the probability strength.
Example Usage
Swing Traders: Can use the weekly analysis to identify potential high or low points for the week, aiding in setting entry or exit points.
Day Traders: Can use the daily analysis to determine the most likely hours for reaching the high or low of the day, optimizing intraday trading strategies.
Additional Information
This indicator is inspired by the knowledge shared by Omor and aims to provide traders with a statistical edge in predicting market movements.
All Divergences with trend / SL - Uncle SamThanks to the main inspiration behind this strategy and the hard work of:
"Divergence for many indicators v4 by LonesomeTheBlue"
The "All Divergence" strategy is a versatile approach for identifying and acting upon various divergences in the market. Divergences occur when price and an indicator move in opposite directions, often signaling potential reversals. This strategy incorporates both regular and hidden divergences across multiple indicators (MACD, Stochastics, CCI, etc.) for a comprehensive analysis.
Key Features:
Comprehensive Divergence Analysis: The strategy scans for regular and hidden divergences across a variety of indicators, increasing the probability of identifying potential trade setups.
Trend Filter: To enhance accuracy, a moving average (MA) trend filter is integrated. This ensures trades align with the overall market trend, reducing the risk of false signals.
Customizable Risk Management: Users can adjust parameters for long/short stop-loss and take-profit levels to match their individual risk tolerance.
Additional Risk Management (Optional): An experimental MA-based risk management feature can be enabled to close positions if the market shows consecutive closes against the trend.
Clear Visuals: The script plots pivot points, divergence lines, and stop-loss levels on the chart for easy reference.
Strategy Settings (Defaults):
Enable Long/Short Strategy: True
Long/Short Stop Loss %: 2%
Long/Short Take Profit %: 5%
Enable MA Trend: True
MA Type: HMA (Hull Moving Average)
MA Length: 500
Use MA Risk Management: False (Experimental)
MA Risk Exit Candles: 2 (If enabled)
Pivot Period: 9
Source for Pivot Points: Close
Backtest Details (Example):
The strategy has been backtested on XAUUSD 1H (Goold/USD 1 hour timeframe) with a starting capital of $1,000. The backtest period covers around 2 years. A commission of 0.02% per trade and a 0.1% slippage per trade were factored in to simulate real-world trading costs.
Disclaimer:
This strategy is for educational and informational purposes only. Backtested results are not indicative of future performance. Use this strategy at your own risk. Always conduct your own analysis and consider consulting a financial professional before making any trading decisions.
Important Notes:
The default settings are a good starting point, but feel free to experiment to find optimal parameters for your specific trading style and market.
The MA-based risk management is an experimental feature. Use it with caution and thoroughly test it before deploying in live trading.
Backtest results can vary depending on the market, timeframe, and specific settings used. Always consider slippage and commission fees when evaluating a strategy's potential profitability.
Tapak 20RThis strategy originally developed by Jatrader. Kudos to him for giving me chance to develop this indicator.
This script should be use Light Crude Oil Futures 20 Range chart. (This strategy only proven for 20R range chart, Crude Oil.)
How it works?
If current 20R candle is closed green, the closing value must be higher than previous candle to take long position.
If not, it stays as previous direction.
If current candle is closed red, the closing value must be lower than previous candle to take short position.
If not, it stays as previous direction.
How to use this indicator?
1. First, determine the stoploss point from high or low candle.(if current candle is green, stoploss is set higher than high candle and vice versa)
2. Determine how many tick you want to allowed for stoploss, how much profit (ticks) you want to achieve.
3. Determine the color and thickness of each line.
The table will display all value involved with this strategy such as entry value, stoploss value and target profit value.
Please kept in mind that, this is scalping strategy. So, the recommended target profit should be around 10 - 20 ticks.
Thank you.
Candle Analysis BiasDescription:
The "Candle Analysis Bias" indicator is designed to provide visual cues on the direction of price movements by labeling candles as either "Bullish" or "Bearish" based on specific criteria. This indicator helps traders quickly identify shifts in momentum and potential trend reversals.
Features:
Directional Labels: Candles are labeled "Bullish" if the closing price exceeds the previous candle's high, indicating potential upward momentum. Conversely, candles are labeled "Bearish" if the closing price falls below the previous candle's low, suggesting potential downward pressure.
Customizable Appearance: Users can customize the color of the labels through the indicator settings. The default colors are green for bullish labels and red for bearish labels, with a 50% opacity to ensure they are visually distinct yet not overly intrusive.
Label Offset: An offset can be applied to the labels to position them slightly away from the candles, enhancing readability. The default offset is set to 10 times the minimum price tick of the symbol.
Exclusion of Current Candle: The indicator does not label the current, open candle until it is confirmed. This ensures that labels are only applied to completed candles, avoiding premature signals.
Usage:
Trend Identification: Use the "Bullish" and "Bearish" labels to identify potential trend changes or continuations.
Confirmation Tool: Combine the labels with other indicators or analysis techniques to confirm trading signals.
Visual Analysis: Quickly scan the chart for clusters of "Bullish" or "Bearish" labels to gauge overall market sentiment.
Settings:
Bullish Color: Customize the color of the "Bullish" labels.
Bearish Color: Customize the color of the "Bearish" labels.
Label Offset: Adjust the distance between the labels and the candles.
Installation:
To install this indicator, copy the Pine Script code provided and paste it into the Pine Editor in TradingView. Click "Add to Chart" to apply the indicator to your selected chart.
This detailed description should help users understand the purpose and functionality of the "Candle Analysis Bias" indicator, making it easier for them to incorporate it into their trading strategies.
ATR5 Gerchik&CoThis script is designed to calculate and display the Average True Range (ATR) based on the last 5 bars on a daily (D1) chart. The ATR is a key indicator used to measure market volatility by decomposing the entire range of an asset price for that period. Additionally, the script provides a visual representation of the percentage of the current day's range relative to the calculated ATR.
How It Works
Calculation of ATR:
The script calculates the ATR by taking the high and low of each of the last 5 daily bars, computing the range for each bar, and then averaging these values.
The ATR value is then dynamically formatted based on the decimal places relevant to the asset's tick size.
Percentage of Current Day's Range:
The script also calculates the percentage of the current day's range compared to the ATR. This helps traders quickly assess how much of the average range has been covered today.
Visual Display:
The ATR value and the percentage of the current day's range are displayed in the top-right corner of the chart for easy reference.
Usage
Identifying Volatility: The ATR is a widely used indicator to identify periods of high and low volatility in the market. Traders can use this to adjust their strategies accordingly, such as widening or tightening stop-loss levels.
Entry and Exit Points: Knowing the ATR can help traders decide on optimal entry and exit points based on expected market movements.
Risk Management: By understanding the market volatility, traders can better manage their risk by adjusting position sizes and stop-loss levels.
Example
The script shows the ATR calculated over the last 5 days, formatted to match the asset's decimal places.
It also displays the current day's range as a percentage of the ATR, providing immediate insight into the day's volatility relative to the recent average.
How to Use
Apply the Script: Add the script to your TradingView chart.
Analyze the Display: Observe the ATR value and the percentage of the current day's range displayed in the top-right corner.
Make Informed Decisions: Use the information to make informed trading decisions based on the volatility and range of the asset.
Code Explanation
The script uses Pine Script v5 and includes functions to calculate the range of bars, average these ranges, and format the output appropriately. The ATR value and percentage are displayed using the table functionality to ensure clear and precise placement on the chart.
This description should provide users with a clear understanding of what the script does, how it can be used, and the concepts behind its calculations. Let me know if you need any further adjustments or additional details!
Triple Moving Average CrossoverBelow is the Pine Script code for TradingView that creates an indicator with three user-defined moving averages (with default periods of 10, 50, and 100) and labels for buy and sell signals at key crossovers. Additionally, it creates a label if the price increases by 100 points from the buy entry or decreases by 100 points from the sell entry, with the label saying "+100".
Explanation:
Indicator Definition: indicator("Triple Moving Average Crossover", overlay=true) defines the script as an indicator that overlays on the chart.
User Inputs: input.int functions allow users to define the periods for the short, middle, and long moving averages with defaults of 10, 50, and 100, respectively.
Moving Averages Calculation: The ta.sma function calculates the simple moving averages for the specified periods.
Plotting Moving Averages: plot functions plot the short, middle, and long moving averages on the chart with blue, orange, and red colors.
Crossover Detection: ta.crossover and ta.crossunder functions detect when the short moving average crosses above or below the middle moving average and when the middle moving average crosses above or below the long moving average.
Entry Price Tracking: Variables buyEntryPrice and sellEntryPrice store the buy and sell entry prices. These prices are updated whenever a bullish or bearish crossover occurs.
100 Points Move Detection: buyTargetReached checks if the current price has increased by 100 points from the buy entry price. sellTargetReached checks if the current price has decreased by 100 points from the sell entry price.
Plotting Labels: plotshape functions plot the buy and sell labels at the crossovers and the +100 labels when the target moves are reached. The labels are displayed in white and green colors.
PA Helper - Lots calculatorThe tool helps you figure out how many units (lots) of a financial instrument you should trade to keep your risk within a specific dollar amount.
It considers the entry price, stop-loss (SL) price, and the amount of money you're willing to risk.
How It Works
To use the indicator you need to select:
- Entry Price: The price at which you plan to enter the trade.
- Stop-Loss Price: The price level where you'll exit the trade to prevent further losses.
Additional parameters:
Risk Amount ($): The maximum amount of money you are willing to risk on this trade.
For a simpler usage, you can add it to Favorites, and always select it from your Indicators drowdown list.
PDH PDL IndicatorThis TradingView indicator plots important historical levels on your chart, including the previous day's high (PDH) and low (PDL), previous week's high (PWH) and low (PWL), and the current day's, week's, and month's opening prices (D, W, M). The lines and labels are customizable in terms of color, and each level can be toggled on or off based on your preference.
Features:
PDH (Previous Day High): Displays the high price of the previous trading day.
PDL (Previous Day Low): Displays the low price of the previous trading day.
PWH (Previous Week High): Displays the high price of the previous trading week.
PWL (Previous Week Low): Displays the low price of the previous trading week.
D (Daily Open): Displays the opening price of the current trading day.
W (Weekly Open): Displays the opening price of the current trading week.
M (Monthly Open): Displays the opening price of the current trading month.
Customization:
Color Settings: You can customize the colors of the lines and text for each level.
Toggle Levels: You can toggle the display of each level (PDH, PDL, PWH, PWL, D, W, M) on or off.
How to Use:
Add the indicator to your TradingView chart.
Customize the colors and toggle the levels as per your requirements from the settings panel.
The lines will be plotted on the right side of the last candle, with labels indicating the corresponding level.
Example Usage:
This indicator is particularly useful for traders who want to keep track of significant price levels from previous trading sessions and the opening prices of the current trading periods. These levels can serve as potential support and resistance areas.
Length True Range BarColorOverview
The indicator prints different colors on the candles for pre-determined amplitudes in relation to the simple moving average over the average true range.
Calculations
The indicated value of the simple moving average in relation to the average true range is being used to restrict the color of the candle signal to its pre-determined amplitude.
How It Works
Supposing you have a strategy where there is a need to determine the size of the acceptable signal bar in relation to the average true range, as well as size your stop and target through this range. In summary, coloring based on the size of the amplitude due to the average of the ATR, provides the ease of identifying weak signals, where there will possibly not be a sequence of movement, or identifying stretched signals where it will possibly provide a correction movement. This way you can determine an ideal size range for your input signal. Ex: Color candle signal with size of ( Candle => 2* the SMA (ATR) and <= 3* the SMA (ATR).
Inputs
Valores
Period: To determine the length of the ATR
SMA: To determine the length of the Simple Moving Average
LengthMin: Minimum amplitude size factor
LengthMax: Maximum amplitude size factor
Traço: Coloring ATR
SMA: Coloring SMA
Traço: Coloring TR
Bar Color: Coloring candle Sing
Note 1
The values of ATR, SMA and TR will normally be shown in the indicator header for a dynamic visualization of the values, and possible exceptions for candles signals outside the initially proposed factor can be compared.
Note 2
Codes made available in the PINE language reference manual were used to develop the indicator, therefore it is a practical code for trend following setup strategies not available in the community.
High-Low DifferenceThe "High-Low Difference" indicator calculates the difference between the high and low prices within a specified period. In technical analysis, the high and low prices of an asset over a given period can provide valuable insights into the price volatility and trading range. By subtracting the low price from the high price, this indicator quantifies the range covered by price movements during the selected timeframe.
Understanding the high-low difference is essential for traders and analysts to gauge the volatility and potential price movements of an asset. A larger difference indicates higher volatility, implying greater price fluctuation within the chosen period. Conversely, a smaller difference suggests lower volatility, indicating relatively stable price movements.
Traders often use the high-low difference as part of their technical analysis toolkit to identify potential trading opportunities. For instance, a significant increase in the high-low difference may signal a breakout or increased market activity, prompting traders to adjust their trading strategies accordingly. Conversely, a narrowing high-low difference may indicate decreased volatility or a period of consolidation, suggesting potential price range-bound trading conditions.
Overall, the high-low difference serves as a simple yet valuable metric for understanding price volatility, identifying trading opportunities, and making informed decisions in the financial markets.
Volume Bull/Bear Activity [ZC]Volume Bull/Bear Activity Summary
This indicator generates a summary of bull/bear activity for 20 symbols.
For each symbol, two bars are displayed, colored green and red.
The green bar indicates bull volume, reflecting activity within the last candle of the symbol.
The red bar signifies bear volume within the real-time bar, continuously updated.
You can seamlessly adjust the timeframe for this indicator.
Features :
Bear/Bull Volume bars ( Realtime )
ability to add 20 symbols
price is colored in Green or red to determine if its Green/Red candle .
More into its data
Inside Bar by TarunInside bars occur when the current bar's high is lower than the previous bar's high and the current bar's low is higher than the previous bar's low. The script changes the color of inside bars to orange for better visualization.
Opening Range 5 Min LinesOpening Range Lines Indicator
The Opening Range Lines indicator, abbreviated as "OR Lines," is a tool designed to visualize the price range established during the initial moments of a trading session. It helps traders identify significant levels of support and resistance based on the price action during the opening minutes of the session.
Features:
Customizable Timeframe: Traders can specify the duration of the opening range, typically within the first few minutes of the trading session, using the input parameter.
High and Low Lines: The indicator plots two lines on the chart representing the highest and lowest prices reached during the defined opening range period.
Color-Coded Visualization: The opening range high and low lines are color-coded for easy identification. The high line is typically displayed in green, while the low line is displayed in red.
Usage:
Support and Resistance: Traders often use the opening range lines as dynamic support and resistance levels. Prices that breach the opening range high or low may indicate potential breakout or breakdown opportunities.
Intraday Trading: Day traders can utilize the opening range lines to establish intraday trading strategies. For example, buying when the price exceeds the opening range high and selling when it falls below the opening range low.
Confirmation Tool: The opening range lines can also serve as confirmation tools for other technical indicators or trading signals. A bullish signal accompanied by a breakout above the opening range high may reinforce a buy signal, while a bearish signal combined with a breakdown below the opening range low may strengthen a sell signal.
Notes:
Extended Hours Trading: To accurately display the opening range lines for stocks or ETFs, users should enable extended hours trading on their chart settings.
Customization: Traders can adjust the timeframe and appearance settings of the indicator to suit their specific trading preferences and market conditions.
The Opening Range Lines indicator provides traders with valuable insights into the early price dynamics of a trading session, aiding in decision-making and trade management during intraday trading activities.