Crypto Market Cap, BTC/USD, ETH/USD, USDT/USD, XRP/USD, Bitcoin
WDI, BAYER AG NA O.N, DAIMLER AG NA O.N, Apple, Advanced Micro Devices Inc, Amazon Com Inc
DAX Index, TECDAX TR, MDAX PERFORMANCE-INDEX, Dow 30, S&P 500, Nasdaq Composite
Euro Bund, Euro BTP, Euro BOBL, Germany 10Y, US 10Y, Ultra T-Bond
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...
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.
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...
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...
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....
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...
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...
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)<...