█ OVERVIEW This indicator is an educational indicator to make pine coders easier to input color code. Color code displayed either in hex or rgb code or both. █ INSPIRATIONS RGB Color Codes Chart Table Color For Pairing Black And White █ FEATURES Hover table cell to see all properties of color such as Hex code and RGB code via tooltip. Cell can be...
This is experimental script for zigzag which uses type, method and array. Not recommend for actual usage, for pine script study maybe useful. In this experiment, I use type as coded below. It seems have limitation as specially when push as array. As Trading View recommendation, pushing float and int into array especially for type not guarantee to work. I agree...
Library "tools" A library of many helper methods, plus a comprehensive print method and a printer object. This is a newer version of the helpers library. This script uses pinescripts v5 latest objects and methods.
Library "Vector2Array" functions to handle vector2 Array operations. . references: docs.unity3d.com gist.github.com github.com gist.github.com gist.github.com gist.github.com . from(source, prop_sep, vect_sep) Generate array of vector2 from string. Parameters: source : string Source string of the vectors. prop_sep : string Separator character...
Example method of how to import, offset, and plot CSV data using an array. NOTICE: This is an example script and not meant to be used as an actual strategy. By using this script or any portion thereof, you acknowledge that you have read and understood that this is for research purposes only and I am not responsible for any financial losses you may incur by...
█ OVERVIEW This indicator displays zigzag based on high and low, which is using user-defined types (UDT) or objects . █ CREDITS LonesomeTheBlue █ FEATURES 1. Label can be resized. 2. Label can be display either short (Eg : HH, LL, H, L, etc) and long (Eg : Higher Low, etc) 3. Color can be customized either contrast color of chart background, trend...
"In a world of ever pervasive and universal deceit, telling a simple truth is considered a revolutionary act." INTRO: First, how about a little bit of philosophic poetry with another dimension applied to it? The "matrix of control" is everywhere... It is all around us, even now in the very place you reside. You can see it when you look at your digitized...
🔶 OVERVIEW • This educational script will sort an array of tickers alphabetically and place these values in an table , together with the according current price value next to each ticker . 🔶 SORT ALPHABETICALLY 🔹 I. We make a User Defined Type (UDT) obj , with: · ticker - the string name of the ticker · price ...
█ OVERVIEW This indicator is intend to be helper to help Elliot Wave user to properly Elliot Wave tools according to correct degree such as 12345 or ABCWXY. The abbreviation changes according to timeframe. █ FEATURES 1. Abbreviation degree adaptive to timeframe. Eg : Subminutte for 1 minute chart, etc. 2. Works for custom timeframe. Eg : Subminutte for 1 to...
█ OVERVIEW This table indicator was intended as helper / reference for using XABCD Pattern drawing tool. The values shown in table was based on Harmonic Trading Volume 3: Reaction vs. Reversal written by Scott M Carney. Code upgrade from Harmonic Pattern Table (Source Code) and based on latest User-Defined Type (UDT) . As a result, code appeared more...
Library "datTable" Dynamic Array Table.... Configurable Shape/Size Table from Arrays Allows for any data in any size combination of arrays to join together with: all possible orientations! filling all cells contiguously and/or flipping at boundaries vertical or horizontal rotation x/y axis direction swapping all types array inputs for data. ...
Library "fast_utils" This library contains my favourite functions. Will be updated frequently count_int_digits() Count int digits in number Returns: : number of int digits in number count_float_digits() Count float digits in number Returns: : number of float digits in number stringify() Convert values in array or matrix into string...
Library "into" convert literals by type, Same-types left in for bulk reasons. TODO: Expand Types b(string) Convert string to bool. Parameters: string : val A string value. Returns: Bool. b(bool) Pass Bool/bool Parameters: bool : Returns: Bool. b(float) Convert Float (True if exists and not 0) Parameters: float : val A...
Library "xarray" Additional functions for array. remove_duplicates(array_in) Remove duplicates in array. Parameters: array_in : (int /float /string ) Array contains duplicates. Returns: Array without duplicates. // Example: int import tuele99/xarray/1 as xarray c = xarray.remove_duplicates(array.from(1, 4, 2, 1,...
█ OVERVIEW This indicator is an educational indicator which was stripped down from Regression Channel Alternative MTF to display 3 timeframes based on timeframe scenarios. The timeframe scenarios are defined based on Position, Swing and Intraday Trader. █ INSPIRATION It is possible to use array.new_bool, array.indexof and switch to get this outcome. Credits to...
Library "pta_plot" pta_plot: This library will help you to plot different value. I will keep updating with your requirement print_array(array_id, border_color) Display array element as a table. Parameters: array_id : Id of your array. border_color : Color for border (`color.black` is used if no argument is supplied). Returns: Display array...
█ OVERVIEW This library is complementary for XABCD Harmonic Pattern Custom Range Interactive PriceDiff() : Price Difference Parameters: : : price_1, price_2 Returns: : PriceDiff TimeDiff() : Time Difference Parameters: : : time_1, time_2 Returns: : TimeDiff ReturnIndexOf3Arrays() : Return Index Of 3 Arrays Parameters: : :...
Library "swap" Side / Boundary Based All Types Swapper - three automagical types for Arrays, Matrixes, and Variables -- no signal : Long/ Short position autoswap -- true / false : Boolean based side choice -- Src / Thresh : if source is above or below the threshold - two operating modes for variables, Holding mode only for arrays/matrixes -- with two ...