Hello Traders ! Looking for better trading results ? "This indicator shows you how to identify price reversals in a timely manner." John F. Ehlers Introduction : The Gaussian Fisher Transform Price Reversals indicator, dubbed FTR for short, is a stat based price reversal detection indicator inspired by and based on the work of the electrical engineer now...
My first Published contribution. Gracious thank you to all Pine Coders, this has subtle features that have multiple shifts based on inputs. with some experimentation, one might try pushing other sources at the hue dials and see more dynamic indication. for John Ehlers article TASC Magazine This Month. - Special Edition.
This is a Pine script that helps traders format numbers in different ways to make it easier to read and display big numbers on TradingView. this script is specifically to help other fellow pinecoder. Its not a indicator. The above code is an example of how to format numbers in TradingView using two different formats: Indian and USA. The code defines a function...
For those who likes clean chart: Adjustable Symbol ticker and timeframe( AKA watermark) script is here. 1: You can place Symbol ticker and timeframe info anywhere on the chart. Also you can hide one of them or both. Position: Horizontal options: Left Center Right Vertical options: Top Middle Bottom Size: Tiny Smal Normal Large Huge Auto Color is...
█ OVERVIEW After reading all the new names and renames that Pine Script V5 brought to us, I knew that my old Notepad++ User Defined Language (UDL) would need a big update, so I decided to do a complete remake using the same Dark color scheme theme of the Pine Editor. Then, I create a Notepad++ Theme and the Auto-Completion file with the Parameter hints for...
Greetings Colleagues Following some recommendations and ideas I share this moving average, put all of them together The length calculation is automatic there is only one input. The length is inverse so it will wrap from the longest reference point, hence using phi Moving averages will wrap around the price. I've also added gradient color to plots and fill...
Greetings colleagues. Here I share a tool that uses the color gradient provided by PineCoders and lucf. This tool was made for the reason that whenever we start with an idea for a script, we end up consuming a lot of time in selecting suitable colors. An RSI was taken as a reference for the signal You have multiple switches for axes, fill, background and...
This code was written using: •Pine Script Coding Conventions. This script provides a very useful tool for new community users and professionals. It puts at your disposal a Moving Average Ribbon by hand to graph and easily find the ones with the highest performance. The creation of this script was motivated because in free TradingView accounts there is a limit...
█ OVERVIEW The new varip keyword in Pine can be used to declare variables that escape the rollback process, which is explained in the Pine User Manual's page on the execution model . This publication explains how Pine coders can use variables declared with varip to implement logic that was impossible to code in Pine before, such as timing events during the...
█ OVERVIEW This script presents a new function to help coders use security() in both repainting and non-repainting modes. We revisit this often misunderstood and misused function, and explain its behavior in different contexts, in the hope of dispelling some of the coder lure surrounding it. The function is incredibly powerful, yet misused, it can become a...
█ OVERVIEW This script provides string manipulation functions to help Pine coders. █ FUNCTIONS PROVIDED f_strLeft(_str, _n) Function returning the leftmost `_n` characters in `_str`. f_strRight(_str, _n) Function returning the rightmost `_n` characters in `_str`. f_strMid(_str, _from,...
█ OVERVIEW Calculating time-based offsets is necessary when coders need to draw lines or labels into the future because using `xloc = xloc.bar_time` in `label.new()` or `line.new()` is then mandatory. This script provides a function to help with those calculations: f_timeFrom(_from, _qty, _units) The function calculates a negative (into the past) or...
This framework allows Pine coders to quickly build a complete multi-timeframe oscillator from any calculation producing values around a centerline, whether the values are bounded or not. Insert your calculation in the script and you have a ready-to-publish MTF Oscillator offering a plethora of presentation options and features. █ HOW TO USE THE FRAMEWORK 1 —...
Over the years, many FIR filters have been proposed by the Pine community, with the standard way of computing them being `for` loops. The arrival of arrays allows for a new, more efficient way to compute them. This script provides a template showing how you can compute FIR filters using Pine arrays. FIR Filters FIR stands for "Finite Impulse Response", and...
This is a developer friendly solution to the current PineScript limitation of not being able to easily configure presets for multiple timeframes. If you're developing multi-timeframe strategies then you've no doubt done battle with built-in `input` function which only allows for a single default value. You've probably come up with all kinds of fancy workarounds,...
Fresh off the press, we have a new breed of indicators: Bitcoin's Hash Rate & Price. As many of you have read, roughly 80% of BTC's price movements can be correlated to its changes in hash rate volume. I decided to make a stochastic indicator that utilizes this principle to track divergence of the price from the hash rate. Let's break this down... In red is the...
I found MichelT 's work thanks to LucF . One of its cool concepts that touched me was his error's function. Whenever something unexpected takes place, it returns an error's message right on the chart, one nobody can't say they can't see lol. I told him it would be cool if we could get specific messages related to specific cases, he said "there is a task for such...
This script provides a framework to add alerts to a script. It uses a method and provides code that: — Allows the indicator's users to select the plotting of markers representing the different conditions used to trigger alerts. — Allows filtering of the markers on direction: both, longs only, shorts only. — Uses a single alert for the indicator. It will trigger...