Find the all time high (ATH) and plot a horizontal line extended from the ATH out to the right. Script also produces a label near the current candle indicating location and value of the ATH. If the ATH is higher than the current candle's high the label will be red and pointing up to indicate the ATH is above the current candle. If that current candle's high is the...
Hello guys, another day, another method for detecting support and resistance level. This time it's all about the VWAP and daily gaps it might produce. How does it work? The indicator detects when a new daily candle begins and the VWAP makes a big move in either direction. Often it produces a gap and this is where the support or resistance level will be...
English: An expansion of the Advance Decline Line of the NYSE. It can be interesting to compare the Advance Decline Line with the corresponding benchmark index. I therefore made a ranking (0 to 100) based on the performance over the last days (default: 21 days). The difference is the target figure and ranges between -100 (bearish divergence) to +100 (bullish...
Just a modification of my old auto-line script, lot of errors fixed and a correction in the standard deviation. Also changed the tittle because "auto-line" was really confusing.
Example on how to create custom grids with variable N lines/labels:
This indicator plots the oscillator as a histogram where blue denotes periods suited for buying and red . for selling. If the current value of AO (Awesome Oscillator) is above previous, the period is considered suited for buying and the period is marked blue. If the AO value is not above previous, the period is considered suited for selling...
FFriZz | FrizLabz -- Priceline/Ticks Due to TradingView not allowing us to change the size or style of the Priceline I decided to make this You can change the style, size, color of the Price line with this Script There is also an option for the closing price to be plotted on the Priceline -- Colors -- You can have the Line and/or the Closing price change...
A simple as ass concept that uses modular arithmetic to plot dashed line.
An indicator inspired by the Renko chart.Instead of using a static box size we use standard deviation, this make the indicator more reactive to the market state. If the indicator show no values then you have to round the price to the nearest integer, for that use the round parameter. Hope you enjoy :)
Hey guys, this script shows monthly, weekly and daily OHLC data represented as horizontal level. I tried to make it as user-friendly as possible. Therefore, you can add different colors and styles for each level, as well as turn them on and off. With the "Label Offset" -parameter you are in control where the label text should appear. You can shift it from left...
A variation on the Auto-Line indicator, we allow it to get closer to the price thanks to a drift , this also allow the line to be more directional . This indicator can be used with moving averages using crosses as signals or as a band indicator by ploting a + dev as the upper band and a - dev as the lower one. For any help or suggestions feel free to send a...
Plots the standard deviation resistance/support levels. Input the previous settlement price and the implied volatility. credit to u/UberBotMan and u/Living_Granger for the idea and formulas (preview example is using settlement of 2420 and IV of 11)
Library "intersect" Find Line Intersection X/Y coordinates. Simple to use, will find intersection if it exists on the segments if the line segments do not cross on segment, an 'na' value will be returned if you plot new items with the output coords, they still plot. avoid this by setting a na(x) condition before plotting new items get(l1, l2, (...
English: An expansion of the Advance Decline Line of the NASDAQ. It can be interesting to compare the Advance Decline Line with the corresponding benchmark index. I therefore made a ranking (0 to 100) based on the performance over the last days (default: 21 days). The difference is the target figure and ranges between -100 (bearish divergence) to +100 (bullish...
This indicator simply provides a moving average (SMA, EMA, etc. can be selected) which hides itself when touched by the price. Two potential uses: Set the growth rate to be slow, to highlight only very rapid moves on a chart. Use the default settings and change the averaging period until the MA line remains bright. This MA can then act as a good trailing...
Library "BoxLine_Lib" personal Library for line and box built in functions lineXY(x) get x1,y1,x2,y2 in a tuple Parameters: x : TODO: line Returns: tuple of x1,y1,x2,y2 line(x) Create line with only the y1 value(when line == na) or all when line != na set x1,y1,x2,y2 individually just 1 or all - use just the line value to set the x2 to...
experimental: draws a line from 2 vectors(price, time) update: reformatted the function, added automatic detection of the period multiplier by approximation(gets a bit goofy with stocks/week time), example using timestamp() function. offsetting is still bugged, i cant find a way around it atm.