Example of how to input multiple symbols at once using a CSV list of ticker IDs. The input list is extracted into individual ticker IDs which are then each used within an example screener function that calculates their rate of change. The results for each of the rate of changes are then plotted. For code brevity this example only demonstrates using up to 4...
This script lets you pick 20 symbols to check for ma crosses. The way it works is it scans all 20 of your symbols for moving average crosses and then it sends an both a regular alert and a visual alert inside of the indicator. I found that ma cross strategies are very popular right now so I thought it would be nice to have one indicator instead of 20 discord...
Briefly flashes chart background colors as a visual alert whenever a condition occurs, from the insatiable mind of @scarf . Special thanks to @LucF for his advice on improving efficiency when working with dynamic tables.
As you probably know in TradingView there is a limit of 40 instruments in one custom screener. I created a script that will allow you to scan more symbols. The idea of it is pretty simple. You have to add a screener a few times on your screen with a different set of symbols. Then select column width (as % of your chart width) and # of the screener right to left....
A screener for multiple indicators with nice table output. I was asked many times to update custom screener to display results in a table form. This way it looks much better. You can play with background colors depend on values you're looking for. In the screener, for example, I'm highlighting overbought/oversold RSI values, big ADX levels and trend of the...
Stock screener for Boom Hunter and Boom Hunter Pro entry zones. This script will screen 18 different stocks for entry zones. 1. Enter in any ticker ID's from charts you wish to scan in the settings. 2. Go to desired timeframe. 3. Click add alert button at top toolbar. 4. Select Boom Screener indicator, input alert notification settings and/or change alert name and...
This script will screen 12 different stocks and current chart (13 in total) for entry points from my relative volume indicator. 1. Enter in any ticker ID's from charts you wish to scan in the settings. 2. Go to desired timeframe. 3. Click add alert button at top toolbar. 4. Select RVOL Screener Alerts indicator, input alert notification settings and/or change...
TradingView just recently announced the alert() function that allows you to create dynamic alerts from both strategies and studies. So I decided to update custom screener I published before. It was based on alerts from orders in strategies, that was the only way to create dynamic alerts in PineScript at that point. With the alert() function code become cleaner...
This screens for Supertrend reversal's in 10 different securities. The main logic for the screener is taken from "Simple Custom Screener in Pinescript" by QuantNomad with his permission. If the label color is not visible due to the text in it being white colored, then choose a different color from settings. Also added a simple supertrend to it. Terminology...
Some time ago I published an example of simple custom screener in PineScript: The only thing this screener did is created a dynamic label with screener output. Recently TradingView announced alerts from the strategy with the possibility to add custom messages to alerts. So using it I was able to create a bit more advanced screener which sends results as...
I was inspired by this idea: With his script you can create a simple custom screener in Pine Script on your own for 40 tickets or less. But to make a separate screener for every 40 stocks sucks, so I wrote a program that generates script that allows you to switch stock sets. Current script is generated for the Moscow stock exchange. You can contact me if you...
Quite often I need to run screeners with the custom condition, but unfortunately, in TradingView it's impossible. I created an example script to show how you can create a simple custom screener in Pine Script on your own. It's not very good, it requires some manual adjustments, it can be improved in some ways, but I think it might work for some tasks. What do...