Capitalización del mercado de criptodivisas, BTC/USD, ETH/USD, USDT/USD, XRP/USD, Bitcoin
BANCO SANTANDER S.A, GRUPO FINANCIERO GALICIA SA, Apple, NETFLIX INC, Facebook Inc, Alibaba Group Hldg Ltd
IBEX 35, Índice DAX, Euro Stoxx 50, FTSE 100, S&P 500, Nikkei 225
Bono español 10 Años, Bono de EEUU 10 Años, Euro Bund, Alemania 10A, Japón 10A, Bono del Reino Unido 10 años
buy Signal works only above 50 ma and added bar color change (ema1-ema2)*1.001 This will give good visual on hold he winning trad.
SuperTrend Multi Time Frame with Multi Alerts ... you can insert alerts for all supertrend viewed on graph. Different alerts for long and short. This script plot 5min, 1H and 1D! Enjoy!
Using this script with some changes I try to build the RSI SUPERTREND model with MTF function I think its need more work to refine it but as idea its nice
A Super Trend based on the high and low of a Moving Average, to get an easy view what the current trend is and where to buy and sell. TIPS - The 'Closing Source' option is the candle value that triggers the clouds. 'High/Low System' means that a downtrend is over when the candle LOW closes greater than the downtrend (dark cloud), an uptrend is over when the...
I use supertrend for for trailing stops. One of the problem of trailing stops in long term trend trading is we get stopped too early and then trend continues. To avoid this problem, we can limit or delay our trailing. In this modified version of supertrend, we can delay trailing by two methods: Bars : Trail after certain bars. Input DelayBars says after...
An implementation of the supertrend indicator as it'll be implemented in build-in pine function Supertrend calculates two values: -supertrend -direction using the direction resistance and support are plotted.
Inspired by and To be used with SuperTrend by Alex Orekhov (everget)
//Author - Rajandran R //www.marketcalls.in study("Supertrend V1.0 - Buy or Sell Signal", overlay = true) Factor=input(2, minval=1,maxval = 100) Pd=input(7, minval=1,maxval = 100) Up=hl2-(Factor*atr(Pd)) Dn=hl2+(Factor*atr(Pd)) TrendUp=close >TrendUp ? max(Up,TrendUp ) : Up TrendDown=close TrendDown ? 1: close< TrendUp ? -1: nz(Trend ,1) Tsl = Trend==1?...
Based on some code from noro and kiasaki - thank you. A Super Trend is a trend over a long period of time. There are lots of existing scripts that generate signals based on the overall direction of an instrument. What if we combined this idea with a measure of Money Flow and added a filter to try to avoid choppy sideways action? I started with a super trend...
Similar to X system but here I use the super trend with MTF function the sell option depend on the % channel sell seen in red as bearish rule (so both need to agree) the buy option depend only on the MTF which is set on 2 hour on 1 hour candles. you can try to modify if you want shorter times to see if it better if you want it sell more just remove the and...
So how this system work ? 1. the bullish and bearish zones in lime and red are based on percent channel (you can modify it according to your needs) . this now is on 1 hour candles so I set it to 1% above and 3% bellow for BTC on bitmex. 2. we ha RSI super trend system which generate our buy and sell signals . Since the Super trend is an RSI like it act like one...