CryptoRox

4All-Alert Script

52
This is the alert script for automating a previously shared strategy.

You can get the strategy script and instructions for setting it up here:

Skrypt open-source

Zgodnie z prawdziwym duchem TradingView, autor tego skryptu opublikował go jako open-source, aby traderzy mogli go zrozumieć i zweryfikować. Brawo dla autora! Możesz używać go za darmo, ale ponowne wykorzystanie tego kodu w publikacji jest regulowane przez Dobre Praktyki. Możesz go oznaczyć jako ulubione, aby użyć go na wykresie.

Wyłączenie odpowiedzialności

Informacje i publikacje przygotowane przez TradingView lub jego użytkowników, prezentowane na tej stronie, nie stanowią rekomendacji ani porad handlowych, inwestycyjnych i finansowych i nie powinny być w ten sposób traktowane ani wykorzystywane. Więcej informacji na ten temat znajdziesz w naszym Regulaminie.

Chcesz użyć tego skryptu na wykresie?
//@version=2
//This study is for custom alerts that are best used with the Chrome Extension AutoView for automating TradingView alerts.
//You can get the AutoView extension for FREE using the following link
//https://chrome.google.com/webstore/detail/autoview/okdhadoplaoehmeldlpakhpekjcpljmb?utm_source=chrome-app-launcher-info-dialog
study("4All-Alert", shorttitle="Alerts")

src = close
len = input(4, minval=1, title="Length")

up = rma(max(change(src), 0), len)
down = rma(-min(change(src), 0), len)
rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down))

rsin = input(5)
sn = 100 - rsin
ln = 0 + rsin

short = crossover(rsi, sn) ? 1 : 0
long = crossunder(rsi, ln) ? 1 : 0

plot(long, "Long", color=green)
plot(short, "Short", color=red)

// The following are to be placed in the message section of each alert in order
//for the extension to place the trades on 1broker for you

//Short
//c=order b=long
//c=position b=long l=200 t=market
//b=short q=0.01 l=200 t=market tp=13 sl=25

//Long
//c=order b=short
//c=position b=short l=200 t=market
//b=long q=0.01 l=200 t=market tp=13 sl=25