Library "lib_profile" a library with functions to calculate a volume profile for either a set of candles within the current chart, or a single candle from its lower timeframe security data. All you need is to feed the method delete(this) deletes this bucket's plot from the chart Namespace types: Bucket Parameters: this (Bucket) method...
Library "lib_retracement_patterns" types and functions for XABCD pattern detection and plotting method set_tolerances(this, tolerance_Bmin, tolerance_Bmax, tolerance_Cmin, tolerance_Cmax, tolerance_Dmin, tolerance_Dmax) sets tolerances for B, C and D retracements. This creates another Pattern instance that is set as tolerances field on the original and...
Description: An optimised library for non-repainting Rational Quadratic Kernel Library. Added lookbackperiod and a validation to prevent division by zero. Thanks to original author jdehorty. Usage: 1. Import the library into your Pine Script code using the library function. import vinayakavajiraya/RationalQuadraticKernelFunction/1 2. Call the Main...
Library "RSNPSD" EMA5(source, EMAlength, Smoothlength) Parameters: source (float) EMAlength (simple int) Smoothlength (simple int) SLOPE(source, slopeDistance) Parameters: source (float) slopeDistance (simple int) print(txt) Parameters: txt (string)
Library "merge_pinbar" Published by @dandrideng Modified by @RpNm1337 merge_pinbar: merge bars and check whether the bar is a pinbar merge_pinbar(period, max_bars) merge_pinbar: merge bars and check whether the bar is a pinbar Parameters: period (simple int) max_bars (simple int) Returns: array:
Library "A_Taders_Edge_LIBRARY" RCI(_rciLength, _close, _interval, _outerMostRangeOfOscillator) - You will see me using this a lot. DEFINITELY my favorite oscillator to utilize for SO many different things from timing entries/exits to determining trends. Parameters: _rciLength (int) _close (float) _interval (int) ...
Library "CandlestickPatterns" This library provides a wide range of candlestick patterns, and available for user to call each pattern individually. It's a comprehensive and common tool designed for traders seeking to raise their technical analysis, and it may help users identify key turning of price action in financial instruments. Credit to public technical...
Library "JapaneseCandlestickPatterns" Japanese Candlestick Patterns is a library of functions that enables the detection of popular Japanese candlestick patterns such as Doji, Hammer, and Engulfing, among others. The library provides a simple yet powerful way to analyze financial markets and make informed trading decisions. Japanese Candlestick Patterns library...
Library "gFancyMA" printLbl(y, x, c, m, b, s) Parameters: y (float) x (int) c (color) m (string) b (bool) s (string)
What Is the Average True Range (ATR)? The average true range (ATR) is a technical analysis indicator, introduced by market technician J. Welles Wilder Jr. in his book New Concepts in Technical Trading Systems, that measures market volatility by decomposing the entire range of an asset price for that period. Each instrument per unit of time passes its...
Library "GalacticS2021" printLbl(y, x, c, m, b) Parameters: y (float) x (int) c (color) m (string) b (bool)
Library "lib_pivot" Object oriented implementation of Pivot methods. method tostring(this) Converts HLData to a json string representation Namespace types: HLData Parameters: this (HLData) : HLData Returns: string representation of Pivot method tostring(this, date_format) Namespace types: Pivot Parameters: this (Pivot) ...
Library "lib_priceaction" a library for everything related to price action, starting off with displacements displacement(len, min_strength, o, c) calculate if there is a displacement and how strong it is Parameters: len (int) : The amount of candles to consider for the deviation min_strength (float) : The minimum displacement strength to...
Library "VolatilityIndicators" This is a library of Volatility Indicators . It aims to facilitate the grouping of this category of indicators, and also offer the customized supply of the parameters and sources, not being restricted to just the closing price. @Thanks and credits: 1. Dynamic Zones: Leo Zamansky, Ph.D., and David Stendahl 2. Deviation: Karl...
Library "MyVolatilityBands" Just a lil' library of volatility bands that I use in some scripts bollingerbands(src, lkbk, mult, basis) Bollinger Bands Parameters: src (float) : float lkbk (int) : int mult (float) : float basis (float) Returns: Bollinger Bands donchianchannels(src, lkbk, band_width) Donchian...
Library "Pivot" This library helps you store and manage pivots. bias(isHigh, isHigher, prevWasHigher) Helper function to calculate bias. Parameters: isHigh (bool) : (bool) Wether the pivot is a pivot high or not. isHigher (bool) : (bool) Wether the pivot is a higher pivot or not. @return (bool) The bias (true = bullish, false = bearish,...
Library "MyMovingAveragesLibrary" alma(src, lkbk, alma_offset, alma_sigma) ALMA - Arnaud Legoux Moving Average Parameters: src (float) : float lkbk (int) : int alma_offset (simple float) alma_sigma (simple float) : float Returns: moving average frama(src, lkbk, FC, SC) FRAMA - Fractal Adaptive Moving Average Parameters: ...
Library "Absolute_ZigZag_Lib" This ZigZag Library is a Bit different. Instead of using percentages or looking more than 1 bar left or right, this Zigzag library calculates pivots by just looking at the current bar highs and lows and the ones of one bar earlier. This is the most accurate way of calculating pivots and it also eliminates lag. The library also...