TradingView
QuantNomad
23 feb 2021 09:35

Custom Screener with Alerts V2 [QuantNomad] 

S&P 500 IndexTVC

Descrizione

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 and more readable.

It works for up to 40 symbols at the same time.
You can create an alert from it easily by selecting screener name from the list and then selecting "Any alert() function call".
No additional configuration is required, message and alert on close I set up in the code.

I created as an example a screener that tracks both overbought (RSI > 70) and oversold stocks (RSI < 30).
To create your own screener you have to change only screenerFunc().
By design it should output 2 values:
  • cond - True/False Boolean variable. Should this instrument be displayed in the screener?
  • value - Additional numeric value you can display in your screener. I display RSI level for selected stocks for example.


Link to the old screener:

tradingview.com/script/QKgb0Fud-Custom-Screener-with-Alerts-QuantNomad/

Disclaimer
Please remember that past performance may not be indicative of future results.
Due to various factors, including changing market conditions, the strategy may no longer perform as good as in historical backtesting.
This post and the script don’t provide any financial advice.
Commenti
NBusiness
Loving it, simple and useful! Quick question, is there a simple add to the code to make it sort the RSI in ascending order?
PineCoders
kakola
@PineCoders, Would there be any advantage in replacing the repainting security() with the PineCoder's f_security() function here?
CryptoDINGUE
@kakola, no because the alert it self does not repaint -> freq = alert.freq_once_per_bar_close
and because // This will keep screener only for the last bar label.delete(lab_l)
DeepMPans
Hello,

When I am trying to use this script, it's giving an error while creating an alert on pop up and then not saving it.
Error is "Alert Saving failed. Please, try again."

Tried it number of times, but nothing works.

Appreciate if you can guide me.

TIA.
QuantNomad
@DeepMPans, Change the name for it, with all symbols in params it is too long
JG56
Hello,

Super useful screener, thanks for sharing.

I have one question: what happens if multiple securities fulfil the condition during the same bar? In its current shape it looks like TV would only be able to shoot one alert - is that correct?
gopinath007777
WILL THIS PLACE ODERS FOR THIS SYSTEX[{"TT":"BUY","TS":"CTS","Q":"10%","FUND":"EQUITY","LEVERAGE":"10X","OT":"MARKET","SL":"1.5%","TP":"1.5%","P":"BO","VL":"DAY","AT":"FYERSV2"}]
Vishnugupta
Excellent script but one problem I am facing is when I am adding alert using Any alert() function call", it gives alert for only security which was loaded when created alert.
Any suggestion will very helpful.
farukulla2011
can you add RSI diverge (regular divergence, positive/negative reversal) on this indicator
Altro