Library "StyleLibrary" A small library of Pine Script functions that return built-in style variables. method sizeStyle(size) Takes a `string` that returns the corresponding built-in size style variable. Namespace types: series string, simple string, input string, const string Parameters: size (string) : A `string` representing a built-in size...
Library "PubLibUtility" utilities for indicator and strategy development size(size) size to string conversion Parameters: size (string) Returns: const string tab_pos(tab_pos) table position to string conversion Parameters: tab_pos (string) Returns: const string time_string(time_in) time to string conversion Parameters: ...
Library "Objects" A collection of frequently used objects functions in my scripts. method getType(this) Identifies an object's type. Namespace types: series int, simple int, input int, const int Parameters: this (int) : Object to inspect. Returns: A string representation of the type. method getType(this) Namespace types: series float,...
Library "books" this library contains excerpts from great books to help with trading. enhiridion() Fills the map with admonitions from Epictetus' "Enchiridion". Returns: map with admonitions
Library "Log" - Log methods that return input value for code readbility and cleaness. method str(input) str Namespace types: series float, simple float, input float, const float Parameters: input (float) method str(input) str Namespace types: series int, simple int, input int, const int Parameters: input (int) method str(input)...
This library supplies a randomized list of 1-Move Chess Puzzles, this is 5/5 in my collection of puzzles on Tradingview. This library contains 730 chess puzzles, this is enough for 1 unique chess puzzle for 2 years (730/365 = 2) The Puzzles are sourced from Lichess's open-source database found here -> | database.lichess.org This data has been reduced to only...
This library supplies a randomized list of 1-Move Chess Puzzles, this is 4/5 in my collection of puzzles on Tradingview. This library contains 730 chess puzzles, this is enough for 1 unique chess puzzle for 2 years (730/365 = 2) The Puzzles are sourced from Lichess's open-source database found here -> | database.lichess.org This data has been reduced to only...
This library supplies a randomized list of 1-Move Chess Puzzles, this is 3/5 in my collection of puzzles on Tradingview. This library contains 730 chess puzzles, this is enough for 1 unique chess puzzle for 2 years (730/365 = 2) The Puzzles are sourced from Lichess's open-source database found here -> | database.lichess.org This data has been reduced to only...
This library supplies a randomized list of 1-Move Chess Puzzles, this is 2/5 in my collection of puzzles on Tradingview. This library contains 730 chess puzzles, this is enough for 1 unique chess puzzle for 2 years (730/365 = 2) The Puzzles are sourced from Lichess's open-source database found here -> | database.lichess.org This data has been reduced to only...
This library supplies a randomized list of 1-Move Chess Puzzles, this is 1/5 in my collection of puzzles on Tradingview. This library contains 730 chess puzzles, this is enough for 1 unique chess puzzle for 2 years (730/365 = 2) The Puzzles are sourced from Lichess's open-source database found here -> | database.lichess.org This data has been reduced to only...
Library "Word_Puzzle_Data_R2Z" This Library consists of functions for returning arrays of words starting with R through Z. By splitting the data through multiple libraries, I can import more tokens into my final compiled script, so having this data separately is extremely helpful. This library is the the container 1/3 for my database of 5 Letter words uses in...
Library "Word_Puzzle_Data_I2Q" This Library consists of functions for returning arrays of words starting with I through Q. By splitting the data through multiple libraries, I can import more tokens into my final compiled script, so having this data separately is extremely helpful. This library is the the container 1/3 for my database of 5 Letter words uses in...
Library "Word_Puzzle_Data_A2H" This Library consists of functions for returning arrays of words starting with A through H. By splitting the data through multiple libraries, I can import more tokens into my final compiled script, so having this data separately is extremely helpful. This library is the the container 1/3 for my database of 5 Letter words uses in...
Library "TimeframeComparison" Timeframe comparison for higher and lower timeframe █ OVERVIEW This library is used to compare higher / lower timeframe by using timeframe.multiplier. minMult() timeframe multiplier in minutes Returns: float value
Library "TimeFormattingLibrary" Time formatting functions: formating functions to make timestrings more human readable friendly (for both fixed time and time-elapsed). Also functions for last and first instance in month of day of week input. Also a function for identifying bank holiday Mondays. timeFormatFxn(showDayOfWeek, showDayOfMonth, showMonth,...
Library "ETFFinderLib" TODO: add library description here etf_search_ticker(ticker) searches the entire ETF library by ticker and identifies which ETFs hold a specific tickers. Parameters: ticker (string) Returns: returns 2 arrays, holding_array (string array) and compo_array(float array) etf_search_sectors(sector) searches the entire ETF...
Library "ETFHoldingsLib" spy_get() : pulls SPY ETF data Returns: : tickers held (string array), percent ticker holding (float array), sectors (string array), percent secture positioning (float array) qqq_get() : pulls QQQ ETF data Returns: : tickers held (string array), percent ticker holding (float array), sectors (string array), percent secture...
Library "RiskTools" Provides functions for calculating risk metrics pctDrop(start, result) Calculates what is the percentage drop from a reference price Parameters: start (float) : Starting price before the drop occurred result (float) : Resulting price to which the percentage drop occurred Returns: Percentage drop from "start" to "result" ...