Hello All, This script gets OHLC values from any security and Higher/Same time frame you set, then creates the chart including last 10 candles. it shows Symbol name, Time Frame, Highest/Lowest level of last 10 candles and Close Price at the right side of the chart as well. Closing price text color changes by the real-time candle of the related symbol and time...
Hello All, This script shows the indicators in separate windows on the main chart. Included indicators are RSI, CCI, OBV, Stochastic, Money Flow Index, Average True Range and Chande Momentum Oscillator. indicator windows are located at the top or bottom of the chart according to last moves of the Closing price. Different colors are used for each indicator....
Library "DrawIndicatorOnTheChart" this library is used to show an indicator (such RSI, CCI, MOM etc) on the main chart with indicator's horizontal lines in a window. Location of the window is calculated dynamically by last price movemements drawIndicator(indicatorName, indicator, indicatorcolor, period, indimax_, indimin_, levels, precision, xlocation) draws...
This is a public library that include the functions explained below. The libraries are considered public domain code and permission is not required from the author if you reuse these functions in your open-source scripts
Library "LibraryCheckNthBar" TODO: add library description here canwestart(UTC, prd) this function can be used if current bar is in last Nth bar Parameters: UTC : is UTC of the chart prd : is the length of last Nth bar Returns: true if the current bar is in N bar
Hello All, In Elliott Wave Theory, 3rd wave is not the shortest one in the waves 1/3/5 and it's usually longest one. so if we can catch it then we may get good opportunities to trade. This script finds 3rd wave experimentally. it can be also the 3rd waves in the waves 1, 3, 5, A and C. the 3rd wave should have greater volume than other waves, the script can...
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...
Hello All, This script creates Zigzag Chart by using Zigzag waves, so it's timeless chart meaning that no time dependency on X-axis. Optionally it can calculate & show Zigzag Supertrend or Simple Moving Average. Also it can change bar colors of the main chart by trend direction of Zigzag Supertrend. As seen below, each zigzag wave is a candle on Zigzag...
Hello Traders, For a few months I have been getting requests from my followers about ABC pattern and finally I decided to make this indicator. How it works? - It creates Trend Cloud using Simple and Exponential moving averages with the lenghts 50, 100, 150, 200, 20, 40 by default and checks the trend. you can change the lengths as you wish - It also creates...
Hello All, This script calculates and shows Volume Profile for the fixed range . Recently we have box.new() feature in Pine Language and it's used in this script as an example. Thanks to Pine Team and Tradingview!.. Sell/Buy volumes are calculated approximately!. Options: "Number of Bars" : Number of the bars that volume profile will be...
Hello All, This script shows comparisons between major currencies for the specified time frame. it checks the change since the last bar and set the background and text color. You can change time frame and background & text colors. you can also change the location of the table as you wish. in the following example, the script was added to the chart two times,...
Hello All, This script finds the Cups and you can use it while analysing the symbols. it creates circle and channel for the potential Cups and checks the number of bars included by the channel, if included bars is equal or greater than the value you set then it shows the cup. The Options: "Number for Bars to search" : Maximum length of a Cup "Channel Width...
Helo All, I got many requests for a Breakout script and here it's. This script searches the breakouts/breakdowns and draw square if there is one. The options: "Period" is used to find Pivot Points "Max Breakout Length" is the maximum length to search breakouts "Threshold Rate %" is channel width of the breakout area. calculated using highest/lowest of...
Hello All, This script shows Indicator panel in a Table. Table.new() is a new feature and released today! Thanks a lot to Pine Team to add this new great feature! This new feature is a game changer! The script shows indicator values for each symbol and changes background color of each cell by using current and last values of the indicators for each symbol....
Hello All, Today I am here with a new idea and script, " LTB Zigzag Circles ". The idea is to create Circles using last 2 zigzag waves and to catch the breakouts earlier than horizontal lines. if a circle is broken then the script shows entry for Long/Short positions. and if broken circle reappears again then the position is closed. You can change Zigzag period...
Hello All, This is RSI Multi Time Frame 3D - just for fun :) Enjoy!
Hello All, After Tick Chart and Tick Chart RSI scripts, this is Tick Data Detailed script. Like other tick scrips this one only works on real-time bars too. it creates two tables: the table at the right shows the detailed data for Current Bar and the table at the left shows the detailed data for all calculated bars (cumulative). the script checks the volume...
Hello All, For Long time I was planning to make Support/Resistance Channels script, finally I had time and here it is. How this script works? - it finds and keeps Pivot Points - when it found a new Pivot Point it clears older S/R channels then; - for each pivot point it searches all pivot points in its own channel with dynamic width - while creating the...