Crypto Market Cap, BTC/USD, ETH/USD, USDT/USD, XRP/USD, Bitcoin
FINGERPRINT CARDS AB SER. B, ABB LTD, KINDRED GROUP PLC, SOLTECH ENERGY SWEDEN AB, VOLVO, AB SER. B, HENNES & MAURITZ AB, H & M SER. B
OMX Stockholm 30 Index, S&P 500, Dow 30, Nasdaq Composite, Nikkei 225, DAX-indexet
SWEDEN GOVERNMENT BONDS 10 YR, US 10Y, Euro Bund, Tyskland 10ÅR, Japan 10Y, UK 10Y
This is a trend-following indicator which condenses two SuperTrend indicators -- one based on analysis over a shorter period of time (1.5, 7), and one based on analysis over a longer period of time (1.65, 100) -- into a single indicator which appears on your chart only when both the shorter- and longer-term analysis indicates a "SuperTrend" in the same...
Profit Maximizer Indicator on RSI with Tillson T3 Moving Average: PMax uses ATR calculation inside, for this reason users couldn't manage to use PMax on RSI because RSI indicator doesn't have High and Low values in bars, but ATR needs that values. So I personally calculate RSI in a different way to have High and Low values of RSI wrt price bars. ...
PMax is a brand new indicator developed by KivancOzbilgic in earlier 2020. It's a combination of two trailing stop loss indicators; One is Anıl Özekşi's MOST (Moving Stop Loss) Indicator and the other one is well known ATR based SuperTrend. Both MOST and SuperTrend...
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.
Profit Maximizer - PMax Explorer STRATEGY & SCREENER screens the BUY and SELL signals (trend reversals) for 20 user defined different tickers in Tradingview charts. Simply input the name of the ticker in Tradingview that you want to screen. Terminology explanation: Confirmed Reversal: PMax reversal that happened in the last bar and cannot be...
STRATEGY version of SuperTrend Indicator: SuperTrend is one of the most common ATR based trailing stop indicators. In this version you can change the ATR calculation method from the settings. Default method is RMA, when the alternative method is SMA . The indicator is easy to use and gives an accurate reading about an ongoing trend. It is constructed with two...
Dynamic grid system based on supertrend. note: the input nlines/nfractions are not locked so if values too high might start overlapping line objects.
Hello traders Today I present you a Supertrend not based on candle close but based on a CCI (Commodity Channel Index) How does it work? Bull event: CCI crossing over the 0 line Bear event: CCI crossing below the 0 line When the event is triggered, the script will plot the Supertrend as follow UP Trend = High + ATR * Factor DOWN Trend = Low - ATR *...
Hello Traders !! This is a simple super trend based MAST trend. By default the supertrend is 10 period with 3 ATR multiplier. A moving average is used to benefit from the pullback entries. Bullish Pullback : Price above Supertrend & below MA Bullish: Price above Supertrend and above MA Bearish pullback : Price below Supertrend & above MA Bearish :...
## THIS SCRIPT IS ON GITHUB ## MORE BACKTEST SuperTrend is a moving stop and reversal line based on the volatility (ATR). The strategy will ride up your stop loss when price moviment 1%. The strategy will close your operation when the market price crossed the stop loss. The strategy will close operation when the line based on the volatility will...
SUPERTREND EXPLORER / SCREENER screens the BUY and SELL signals (trend reversals) for 38 user defined different tickers in Tradingview charts. Simply input the short name of the ticker in Tradingview that you want to screen. Script is derived from zzzcrypto123 's work. Thanks for the permission letting me to use his logic. Terminology explanation: Confirmed...
First I would like to thank to @KivancOzbilgic for developing this indicator. All the credit goes to him. I just created a strategy, in order to try to find the perfect parameters, timeframe and currency for it. I will provide below the same description like he has in the publish of profit maximizer Profit Maximizer - PMax combines the powerful sides of MOST...
Version 3: Improved aesthetically, complete turnaround for the strategy with which to use this indicator. Once again, thanks to BlindFreddy and ChrisMoody for the bits of code that were assembled into this indicator. Make the chart yours using the share button for the indicator with barcolors functionality. Changes from v2 and looking forward: Indicator now uses a...
This is a backtesting script for the famous Super Trend. Features - Custom Date Range - Custom Targets and Risks Requested by Dlatrella
6 TImeframe Supertrend lines in one chart(W,D,240,120,60,30 and 15min)
This is Supertrend Multi-time Frame script. There is an option for Higher Tİme Frame Period. if you choose "Auto" then Higher Time Frame calculation would be made by script. Or you can choose "User Defined" and then you must choose the period for Higher Time Frame.
A test of the Supertrend Indicator. If I have made any mischaracterizations and mistakes, please let me know in the comments.
study("Supertrend V1.0 - Buy or Sell Signal", overlay = true) Factor=input(3, 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? TrendUp: TrendDown linecolor = Trend == 1 ?...