TradingView
edward_Z
16 ธันวา 2020 เวลา 14 นาฬิกา 25 นาที

[Zekis]Screener 

Ethereum / TetherUSBinance

คำอธิบาย

A simple screener that scan thru multiple pairs for a setup.
The screener have as example an EMA 50 cross, so you have to change it with your indicator/strategy.
You can use a maximum of 40 security() function, right now there are 20, so you can have a total of 40 pairs.
ความคิดเห็น
mincho1010
Amazing script! If I wanted to use another EMA in a higher timeframe, how could I do it? Example, in 5m close is greater than ema50 and in 30m close is greater than ema50. Do you think it is possible to put together a script like this?
edward_Z
@mincho1010, add this and stay on 5m chart

//@version=4 study("My Script", overlay = true) ema50 = ema(close, 50) ema50_30m = security(syminfo.tickerid, "30", ema50) close_30m = security(syminfo.tickerid, "30", close) condition = close > ema50 and close_30m > ema50_30m plot(ema50) plot(ema50_30m, color = color.yellow)
mincho1010
@zekis, Thanks man!! Is it possible to add an alarm to your script to sound when the conditions are met in an asset?
edward_Z
@mincho1010,
alercondition(condition, "Close above EMA", "Close above EMA")
but this will trigger the alert every candle when the close is above ema, you need instead a crossover condition, which you have to figure it out how can be done :)
mincho1010
@zekis, Thanks!!!
mincho1010
@zekis, I couldn't get the alarm to go off. I tried many things. What would be great is that every time a new asset goes long / short the alarm sounds warning that this new asset has entered a trend. I mean, if a new asset is added to the screener list an alarm warns
RafaelZioni
nice script
asterisk_544
Can i change it to ema 20?
rahimi1423
I need Help edward your can help me with share source code scalping vs swing trading
rahimi1423@gmail.com
ECLIPSE_CRYPTO
Hello, thanks for the Script, can you please help me? I need to know how to code to have the newest on the top of the list always, because the alert always sent the full list, so at least I would know what's the newest that entered the list, looking to the top, if you can, please help me to code that!!! thanks again!
เพิ่มเติม