Hello everyone I received a ton of requests for this script so I decided to share it I did it for a client who didn't want to pay (you can all blame... or even thank him for this script) in the end and I don't want to sell it on my website. Not because it's not interesting but because my website will be a place to showcase and rent the Algorithm Builders...
A simple Indicator to display the current price of the asset above the current bar. It shows a green label if the close is equal or greater than the open, red otherwise.
Hi BIG PLAYERS Each of us makes mistakes and exceptions confirm the rule. However, if you disregard the rules of trading, you lose your money - without any ifs and buts! I have therefore created a reminder label for myself, which trading approaches I always want to stick to. These rules serve me as a guideline when I should trade. Through the permanent...
This simple strategy demonstrates the use of Pine Script version 4 "label" feature to show status box. This box can display anything, in this case it shows current market position, current profit and close price. It renders the box in green if profit is positive, red if negative and blue if neutral.
This script is for a triple moving average indicator where the user can select from different types of moving averages, price sources, lookback periods and resolutions. Features: - 3 Moving Averages with variable MA types, periods, price sources, resolutions and the ability to disable each individually - Crossovers are plotted on the chart with detailed...
A simple example script showing how to use label.new() to plot pivot prices on the chart. A full tutorial and commentary is available on the backtest-rookies website.
This indicator is sample code that you can customize. It selectively displays a label based on how severe a warning should be. Simply add it to your chart, then open the code to make a copy for your own use. Normally I would make this a library, but because libraries can't retain state (yet) and pine script doesn't allow classes (yet), I thought this would be...
INDIGO Cloud System © This script shows the monthly dip and peak zones and the daily highs & lows. The green zone is the dip zone. It's the place to enter a long position if you think there is or will be a reversal. The red zone is the peak zone. It's the place to enter a short position if you think there is or will be a reversal. The script uses the INDIGO...
Hey guys, this script shows monthly, weekly and daily OHLC data represented as horizontal level. I tried to make it as user-friendly as possible. Therefore, you can add different colors and styles for each level, as well as turn them on and off. With the "Label Offset" -parameter you are in control where the label text should appear. You can shift it from left...
Library "SignalProcessingClusteringKMeans" K-Means Clustering Method. nearest(point_x, point_y, centers_x, centers_y) finds the nearest center to a point and returns its distance and center index. Parameters: point_x : float, x coordinate of point. point_y : float, y coordinate of point. centers_x : float array, x coordinates of cluster centers. ...
Function to make it easy to display text information on the chart.
Hello traders This script is based on the great Ricardo Santos InfoPanel script It will display all the Bitcoin prices The script is public so you can adjust according to your own needs PS You might have to scroll right on your chart to see the panel Enjoy :) Dave
Hi everyone The today script is an upgrade on steroids of my previous SMA 50 collector Why this script ? The SMA 50 is known to define a trend. If price is closing above, trend is bullish , if below, trend is bearish. That's why I like to have all of them in all timeframes on my chart :) Those are very relevant for all assets class : FOREX, INDEX, STOCKS,...
█ OVERVIEW Delete array object according to array size such as label, line, linefill, box and table. █ CREDITS HeWhoMustNotBeNamed
█ OVERVIEW This helper intend to simplify which color pair better with black or white color, may help some pine coders. █ INSPIRATION This color choice was inspired during plot especially user enable dark color theme. Color displayed at table and label are based on Indicator name label and Indicator last value label displayed at Scales. █ FEATURES ...
Library "ObjectStack" init() push() push() push() push() push() nextIndex() nextIndex() nextIndex() nextIndex() nextIndex() delete() delete() delete() delete() delete() cleanOldest() cleanOldest() cleanOldest() cleanOldest() cleanOldest()
Library "LabelHelper" Utility for managing active labels on the chart. add(level, txt, labelColor, textColor) For displaying a lable at the last bar. Parameters: level : The value to display the label at. txt : The text to show on the label. labelColor : The color of the label. textColor : The text color of the label. Returns: The...
Library "Labels" Functions to create labels, from simple to complex. labelSimple() Creates a label each time a condition is true. All label parameters can be customised. _condition The condition which must evaluate true for the label to be printed. _x The x location. _y The y location. _text The text to print on the label. _color The...