Hi Everyone Usually I need Price Change info and I believe most of you need this info too. I want to see how it increased/decreased. I automate this by using Pivot Points. it works dynamically and it uses Pivot Highs and Pivot Lows accordingly. That means it calculates which one to use. Please watch following video: Enjoy!
Hello All, I am here with a new idea and script, " Zigzag Waves ". This indicator creates 3 Zigzags with different lengths, keeps the lengths of each zigzag wave and calculates/draws average waves for each zigzag. optionally it can reset the wave when zigzag direction changes and new highest/lowest found. And optionally it draws Exponential Moving Average(EMA)...
Hello Traders, Recently we got new features in Pine such Arrays of Lines, Labels and Strings. Thanks to the Pine Team! ( here ) So I decided to make new style of Multi Time Frame indicator and I used Array of Lines in this script. here it is, RSI Multi Time Frame script. it shows RSI for current time frame as it is and also it gets RSI for the Higher Time...
Hello Traders, With the info "Trend is Your Friend ", you should not take position against the trend. This script checks multipte moving averages if they are above/below the closing price and try to find trend. The moving averages with the length 8, 13, 21, 34, 55, 89, 144, 233, 377 used. these are fibonacci numbers, but optionally you can change the lengths...
Hello All, This is Moving Averages Trend Following 3D indicator. The idea is based on direction of MAs and relation between 20 moving averages (5 to 100 period). Option to show different type of MAs: EMA, SMA, RMA, WMA, VWMA. As I haved tested it looks succesful at calculating trend direction and trend strength. For a better look I tried to make it 3D, it...
Hello Traders, Here Tweezers and Kangaroo Tail script is in your service. The script searches for Tweezer / Kangaroo Tail candlestick patterns and shows them as T (Tweezer) and K (Kangaroo Tail). Thanks to RorschachT who game me the idea and some details while working on this script. What are these candlestick patterns? Tweezers : - A tweezers...
So here's an updated version of my automatic Pivot Point detector. If you don't like having a bunch of Pivots on your chart at once, or having to cycle through various resolutions to see different ones, this is for you! What does this indicator do? It automatically detects the nearest daily, weekly, and monthly pivot points both above and below the current...
Hello Traders, This is "Point and Figure Chart (PnF)" script that run in separated window in real time. The separated PnF chart window is timeless, so no relation with the time on the chart. PnF chart consist of "X" and "O" columns. While "X" columns represents rising prices, "O" column represents a falling price. If you have no idea about what PnF charting is...
Hello all - This code is for daily pivot points, support and resistance with pivot labels and value. simple code with no bugs. this code use previous day values on online chat and current day values on offline chat. pivot values are placed on right side, so no overlapping with other values. . . Thank you Trading View for other educational script to make this possible.
Library "CreateAndShowZigzag" Functions in this library creates/updates zigzag array and shows the zigzag getZigzag(zigzag, prd, max_array_size) calculates zigzag using period Parameters: zigzag : is the float array for the zigzag (should be defined like "var zigzag = array.new_float(0)"). each zigzag points contains 2 element: 1. price level of the zz...
This indicator plots the weekly and daily open in addition to a current close price line. It also signals when price closes above or below the daily and weekly opens. Also, the bull/bear bias is painted on this indicator as well. Black is the weekly open Silver is the daily open Weekly is default black arrows. Up is going above open, down is going below ...
Library "PivotPointsDailyTraditional" Provides the traditional daily pivot values and a pivot vacinity function. P(level, daysPrior) Returns the P value. Parameters: level : The level to caclulate. daysPrior : The number of days in the past to do the calculation. R(level, daysPrior) Calculates the R value for a given pivot...