Stock vs Custom Symbol OutperformanceStock vs Custom Symbol Outperformance" is a powerful technical analysis indicator designed to help traders and investors gauge the relative performance of a stock against a selected benchmark symbol. This tool enables users to easily visualize how a stock is performing in comparison to another asset, such as an index or another stock.
Key Features:
Custom Symbol Comparison: Input any symbol to compare against the stock of interest, allowing for flexible analysis tailored to specific market conditions.
Outperformance Calculation: The indicator calculates the percentage change in price for both the stock and the selected benchmark, providing a clear view of relative performance.
Moving Average Smoothing: A customizable moving average smooths the outperformance data, helping to identify trends and reduce noise in the signals.
Threshold Lines: Set upper and lower threshold lines to visualize significant levels of outperformance or underperformance, aiding in decision-making.
Dynamic Color Coding: The outperformance bars are color-coded—green indicates that the stock is outperforming the benchmark, while red indicates underperformance.
How to Use:
Select a Benchmark: Use the input field to choose the symbol against which you want to compare the stock.
Adjust Parameters: Modify the moving average length and set your desired thresholds for easier identification of performance metrics.
Interpret Results: Analyze the plot for insights into the stock's performance relative to the benchmark, with the moving average providing additional context for trends.
This indicator is ideal for traders looking to refine their strategies by understanding how individual stocks measure up against key benchmarks in the market.
With
PharshK RSI and Zigzag with H/LIt is with RSI level
and Zigzag Pattern that Market goes on Maximum level and Lower Level
And it is also Showing High and Law Level of last Moving Candle so it is easy to entry and Hold
PharshK RSI and Zigzag with H/LIt is with RSI level
and Zigzag Pattern that Market goes on Maximum level and Lower Level
And it is also Showing High and Law Level of last Moving Candle so it is easy to entry and Hold
IC Options °Turn the Dashboard on or off
°Turn the Signal Bars on or off
°Turn the Buy & Sell Signals on or off
°Turn the Fibonacci Retracement Tool on or off
The Dashboard information is best used for confirmation and informational purposes
-above 9 ema is bullish, below 9 ema is bearish trend
This script allows user input, you can add or remove built in dashboard, color bars(inform you of when the price action is above or below the midpoint of the Void Lines), long short signals(can be used to find optimal entries and exits for trades on any time frame. Smaller time frames are best for scalping. Longer time frames are best for longer swing trades. This paired with 9,21,34 ema can produced profitable trades!), auto Fibonacci retracement(allows you to plot perfect Fib Lines every time.)
-thanks for allow the following above being public domain from lemon:lemon:
GBP-USD with w.volumethis script is base o 200 ema filter and trend for gbp-usd
1. long signal above 36 ema and long trend
2. short signal bellow 36 ema and short trend
3. take 2 profit target according %
4. trailing stoploss on close of every candel
Fractals With Alerts For SwingsThis is a Fractals script with the capacity to provide alerts when two candles have completed after the swing point.
The alert can be placed after the swing point has been identified on a 3 candle formation and alerts when the a 5 candle formation is complete, ie; two closed candles after the swing point
Bollinger Bands of RSIwith this script you can follow ema8 of RSI and also SMA20 of RSI with ∓ 2 standart deviation
RSI + EMA with Multiple ZonesThis is your traditional RSI chart but with a few modifications
I added an extra zone parameter that you can specify with its own color and line customization.
There is an EMA that tracks the RSI as well.
RSI AND SMOOTHED STOCH RSI TOGETHERi dont know pine script but here i used some free ones and merged them and modified some
especially smoothed stoch rsi is Good to decide when buy coz i modified it and when fast K value is over D value it changes color
visually better this way
also rsi is shown as area o histogram but if u dont like u can change to line
for stoch rsi i unclick xtrigger (d value) for better appearance
Just Nifty RSI(9) v2study(title="Just Nifty RSI(9)", shorttitle="RSI9")
src = close, len = input(9, minval=9, title="Length")
up = sma(max(change(src), 0), len)
down = sma(-min(change(src), 0), len)
rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down))
plot(rsi, color=blue)
band1 = hline(80)
band0 = hline(20)
fill(band1, band0, color=purple, transp=100)
plot(sma(rsi,9))
plot(sma (rsi,9) , color=red)
Fisher Transform with Up/Down colours - squattter - V2Colours change faster now using the white line as reference rather than the bars.
Code for Cup With Handle calculations (using Pine)Cup with Handle formation calculations using Pine.
First of all, ignore all other lines in the example chart except the two FAT lines. The two fat lines are the ones that define the Cup With handle or in the example chart: a Reversed Cup With Handle.
Note: Handle does not always develop and sometimes the final target price is reached without forming any handle.
This script can calculate both Cup With Handle ( CH ) and Reversed Cup With Handle ( RCH ). Just order the input values accordingly.
For more information about Cup With Handle, use google:
www.google.se
The script need two input parameters : The highest price in the Cup formation and the lowest price in the cup formation or vice versa for the Reversed Cup formation.
Best regards,
/Hull, 2015.05.20.16:31