The "Iterator" library is designed to provide a flexible way to work with sequences of values. This library offers a set of functions to create and manage iterators for various data types, including integers, floats, and more. Whether you need to generate an array of values with specific increments or iterate over elements in reverse order, this library has you...
Overview The Approximate Spectral Entropy-Based Market Momentum (SEMM) indicator combines the concepts of spectral entropy and traditional momentum to provide traders with insights into both the strength and the complexity of market movements. By measuring the randomness or predictability of price changes, SEMM helps traders understand whether the market is in...
🔵 Introduction One of the challenges of script users is matching the colors used in indicators or strategies. By default, colors are chosen to display based on either the dark theme or the light theme. In scripts with a large number of colors used, changing all colors to better display in dark mode or light mode can be a difficult and tedious process. This...
Overview This Pine Script™ code generates a "Market Sentiment Dashboard" on TradingView, providing a visual summary of market sentiment across multiple timeframes. This tool aids traders in making informed decisions by displaying real-time sentiment analysis based on Exponential Moving Averages (EMA). Key Features Panel Positioning: Custom Placement: ...
Speedometer Revisited is a new way to draw custom metric speedometers and is intended to be a utility for other coders to use. @rumpypumpydumpy originally introduced the Speedometer Toolkit in version 4 of Pine Script. Since then, Pine Script has been updated to version 5, introducing some amazing new features such as polylines and chart.points. This indicator is...
█ FreedX Grid Backtest is an open-source tool that offers accurate GRID calculations for GRID trading strategies. This advanced tool allows users to backtest GRID trading parameters with precision, accurately reflecting exchange functionalities. We are committed to enhancing trading strategies through precise backtesting solutions and address the issue of...
Hello dear traders, Today we're discussing an indicator I've coded: the Volume Spike Indicator (VSI). The indicator isn't a groundbreaking invention and certainly not a novelty. Nevertheless, I haven't seen this version of the indicator on TradingView before, so I'd like to introduce it. 1. The Origin of the Idea: We're all familiar with volume charts: A...
The Liquidity Heatmap is an indicator designed to spot possible resting liquidity or potential stop loss using volume or Open interest. The Open interest is the total number of outstanding derivative contracts for an asset—such as options or futures—that have not been settled. Open interest keeps track of every open position in a particular contract rather than...
Flag Finder Indicator is a technical analysis tool to identify bull and bear flags. What are flags Flags are continuation patterns that occur within the general trend of the security. A bull flag represents a temporary pause or consolidation before price resumes it's upward movement, while a bear flag occurs before price continues its downward movement....
The "Mizar_Library" is a powerful tool designed for Pine Script™ programmer’s, providing a collection of general functions that facilitate the usage of Mizar’s DCA (Dollar-Cost-Averaging) bot system. To begin using the Mizar Library, you first need to import it into your indicator script. Insert the following line below your indicator initiation line: import...
This is a simple strategy that is working well on SPY but also well performing on Mini Futures SP500. The strategy is composed by the followin rules: 1. If RSI(2) is less than 15, then enter at the close. 2. Exit on close if today’s close is higher than yesterday’s high. If you backtest it on Mini Futures SP500 you will be able to track data from 1993. It is...
This is a simple strategy that is working well on SPY but also well performing on Mini Futures SP500. The strategy is composed by the followin rules: 1. If today’s close is below yesterday’s five-day low, go long at the close. 2. Sell at the close when the two-day RSI closes above 50. 3. There is a time stop of five days if the sell criterium is not...
This is a simple strategy that is working well on SPY but also well performing on Mini Futures SP500. The strategy is composed by the followin rules: 1. Today is Monday. 2. The close must be lower than the close on Friday. 3. The IBS must be below 0.5. 4. If 1-3 are true, then enter at the close. 5. Sell 5 trading days later (at the close). If you backtest it on...
This is a script written exclusively for people who are trying to learn Pine Script. PSESS stands for "Pine Script Educational Script Series" which is a series of scripts that helps Pine Script programmers in 2 ways: 1. Learn Pine Script at more depth by an interactive environment where they can immediately see the effects of any change in the pre-written...
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...
Trading Bot V1, This code implements a combined trading strategy that uses several indicators and strategies to make buy and sell decisions in the market. The code is written in Pine Script™, which is a programming language used in the TradingView platform. By BraelonWhitfield.Eth The strategy uses the Average Directional Movement Index (ADX) and the Pine...
╭━━━╮ ╰╮╭╮┃ ╱┃┃┃┣╮╱╭┳━╮╭━━┳╮╭┳━━╮ ╱┃┃┃┃┃╱┃┃╭╮┫╭╮┃╰╯┃╭╮┃ ╭╯╰╯┃╰━╯┃┃┃┃╭╮┃┃┃┃╰╯┃ ╰━━━┻━╮╭┻╯╰┻╯╰┻┻┻┻━━╯ ╱╱╱╱╭━╯┃ ╱╱╱╱╰━━╯ Overview Dynamo is built to be the Swiss-knife for price-movement & strength detection, it aims to provide a holistic view of the current price across multiple dimensions. This is achieved by combining 3 very specific indicators(RSI,...
Library "FrizLabz_Time_Utility_Methods" Some time to index and index to time helper methods made them for another library thought I would try to make them as methods UTC_helper(utc) UTC helper function this adds the + to the positive utc times, add "UTC" to the string and can be used in the timezone arg of for format_time() Parameters: utc :...