Due to popular demand, I'm pusblishing Fourier Extrapolator of Price w/ Projection Forecast.. As stated in it's twin indicator, this one is also multi-harmonic (or multi-tone) trigonometric model of a price series xi, i=1..n, is given by: xi = m + Sum( a*Cos(w*i) + b*Sin(w*i), h=1..H ) Where: xi - past price at i-th bar, total n past prices; m - bias; ...
█ OVERVIEW Double Tap is a pattern recognition script aimed at detecting Double Tops and Double Bottoms. Double Tap can be applied to the broker emulator to observe historical results, run as a trading bot for live trade alerts in real time with entry signals, take profit, and stop orders, or to simply detect patterns. █ CONCEPTS How Is A Pattern...
█ OVERVIEW This library is a Pine programmer’s tool containing functions that return values calculated from the range of visible bars on the chart. This is now possible in Pine Script™ thanks to the recently-released chart.left_visible_bar_time and chart.right_visible_bar_time built-ins, which return the opening time of the leftmost and rightmost bars...
█ OVERVIEW This library is a Pine Script™ programmer’s tool containing a variety of time related functions to calculate or measure time, or format time into string variables. █ CONCEPTS `formattedTime()`, `formattedDate()` and `formattedDay()` Pine Script™, like many other programming languages, uses timestamps in UNIX format, expressed as the...
This is a complex indicator that looks to provide some insight into the correlation between volume and price volatility. Rising volatility is depicted with the color green while falling volatility is depicted with purple. Lightness of the color is used to depict the length of the window used, darker == shorter in the 2 -> 512 window range.
This is a very simple script which can be used as measure to define your trading zones based on volatility. Concept This script tries to identify the area of low and high volatility based on comparison between Bandwidth of higher length and ATR of lower length. Relative Bandwidth = Bandwidth / ATR Bandwidth can be based on either Bollinger Band, Keltner...
█ Overview Breakout Probability is a valuable indicator that calculates the probability of a new high or low and displays it as a level with its percentage. The probability of a new high and low is backtested, and the results are shown in a table— a simple way to understand the next candle's likelihood of a new high or low. In addition, the indicator displays...
The genesis of this project was to create a POC library that would be available to deliver volume profile information via pine to other scripts of indicators and strategies. This is a republish of an invite only script to open access This is the indicator version of the library function. A few points of significance: - Allows the choice of reset of the study...
The following script is an original creation originally posted on the blog section of the broker Alpaca. The proposed indicator aims to measure the degree of variations of individual up-trends and down-trends in the price, thus allowing to highlight the direction and amplitude of a current trend. Settings Length : Determines the significance of the trends...
A tool that automatically draws out trend lines by connecting the most recent fractals. Description: The process of manual drawing out trend lines is highly subjective. Many times, we don’t trade what we see, but what we “want to see”. As a result, we draw lines pointing to the direction that we wishfully want price to move towards. While there are no...
█ OVERVIEW This indicator displays a Volume-Weighted Average Price anchored to the leftmost visible bar of the chart. It dynamically recalculates when the chart's visible bars change because you scroll or zoom your chart. If you are not already familiar with VWAP, our Help Center will get you started. The typical VWAP is designed to be used on intraday...
█ OVERVIEW Ichimoku is known to be an Indicator that completes itself, for its power but also for its complexity. This is why I decided to improve the work of Goichi Hosoda in order to offer the maximum number of options for the most seasoned users but also beginners with options to simplify the reading of Ichimoku (such as a panel directly giving you the...
Trailing SL and Target I have seen few requests in PineScripters telegram group asking questions about implementation of trailing stop-loss (SL) and targets. This script is one of the way to implement the same. This script is developed based on dark color theme and is best viewed using dark color theme. How and where can this script be used: The script is built...
This indicator shows the market structure break (msb) and order blocks (ob). Msb occurs after the breakout old high when the price make lower lows or occurs after the breakout old low when the price make higher highs. OB occurs after the msb, ob is the last bullish candle before high if msb is bearish but if the msb is bullish then ob is the last bearish candle...
This script is meant to be used as a generic template for new strategies. Take Profit, Stop Loss logic is provided out of the box with (or without) their trailing variations while the trailing for entry and exit orders can also be enabled and be configured! Custom quantity risk management is provided along with the ability to set custom signal messages that can be...
█ OVERVIEW TASC's July 2022 edition of Traders' Tips includes an article by John Ehlers titled "Pairs Rotation With Ehlers Loops". This is the code that implements the Ehlers Loops applied to pairs rotation trading. █ CONCEPTS John Ehlers developed Ehlers loops as a tool to visualize the performance of one data stream versus another. Initially, he used...
█ OVERVIEW This indicator displays cumulative volume delta in candle form. It uses intrabar information to obtain more precise volume delta information than methods using only the chart's timeframe. █ CONCEPTS Bar polarity By bar polarity , we mean the direction of a bar, which is determined by looking at the bar's close vs its open . ...
This indicator with an unfortunate and very non PC sounding name approximates (!) the intrabar point of control (POC) either from time or volume at price. Due to pine limitations, bin size and the sample lower time frame selection will have at least some effect on the accuracy of the approximation. The trade off is between accuracy and historical availability,...