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...
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....
Its an example of basic cyclic screener. Looks for conditions on RSI and for Golden crosses for N bars back on top40 crypto on Binance. Feel free to contact me via tg @davidkohen if you got any questions! It's an improvement of an old QuantNomad's idea :)
█ OVERVIEW This is a screener script for the Donchian Channel indicator . It's an excellent indicator for trend following, a trading strategy which tries to take advantage of long, medium or short-term moves that seem to play out in various markets. █ DESCRIPTION The screener works by scanning through up to 10 symbols and list down symbols that are currently...
Checks the status of Ichimoku Cloud for 30 coins/stocks. It may take several seconds ( around 30 sec ) to load.
I already published few version of my custom screeners. Unfortunately, because of TradingView's security function call limit you can't use more than 40 stocks in 1 screener. Fortunately, you can compute multiple values in your function and screen few indicators at once. In this script I show how you can compute 5 indicators at the same time for 40 instruments. I...
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 is type of custom screener I searched and made to screen bulk stocks any one can modify it, other may get help out of it. in my code i have made defined 1. uptrend= ema(close,55)> ema(close,144) and ema(close,144)> ema(close,388) and ema(close,388)> ema(close,576) and close>ema(close,388) 2. downtrend = ema(close,55)< ema(close,144) and ema(close,144)<...
Script to display Supertrend trend state of 8 different securities in a panel. Timeframe & Tickers which are to be displayed can be configured from settings. Part of code is from the ADX DI Monitoring Panel script by u/wugamlo with his permission. Thanks to him for that and do please check out his work also.
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...
Hello traders Continuing deeper and stronger with the screeners' educational serie one more time (#daft #punk #private #joke) We don't have to wait for TradingView to allow screener based on custom indicator - we can build our own ^^ I - Long Terms concept I had the idea from @scarff. I think it's genius and I use this long terms level in my trading across...
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...