Hello everyone, I am a heavy Python programmer bringing machine learning to TradingView. This 15 minute Bitcoin Long strategy was created using a machine learning library and 1 year of historical data in Python. Every parameter is hyper optimized to bring you the most profitable buy and sell signals for Bitcoin on the 15min chart. The historical Bitcoin data was...
Dear community, Today I want to present you one of my favorite and simple trading bots: The RSI Trend. This bot is based on the RSI, which normally is used as a trend reversal indicator. However, here it’s used as a trend finding indicator, often with great success. This bot making long-only trades, which is quite successful in bull-markets like the one we’re...
Original credits goes to @Hayemaker, and @NeoButane for the TWAP portions of this script By @davewhiiite, 2021-03-27 Version 0.1 Summary: The funding rate is the interest charged / credited to a perpetual futures trader for taking a long or short position. The direction of the funding rate is used as an indicator of trader sentiment (+ve = bullish; -ve =...
Coinrule's Community is an excellent source of inspiration for our trading strategies. In these months of Bull Market, our traders opted mostly on buy-the-dips strategies, which resulted in great returns recently. But there has been an element that turned out to be the cause for deep division among the Community. Is it advisable or not to use a stop-loss...
Version 1.0, 20210409 This is an oscillator indicator that shows the premium between BTC perpetual futures and spot prices. The prices of futures and spot are weighted average prices, weighted by the exchange's trading volume. When the indicator is in the upper half of the region, the funding rate of perpetual contracts is relatively high, and the market trend...
This indicator combines the power of the Keltner channel with the power of the Relative Strength Indicator (RSI). It can help understand when the market is entering a bullish or a bearish trend. Normally a Keltner channel would reference an Exponential Moving Average (EMA) of the price. In this case the Keltner Channel in the "Keltner + RSI Bitcoin Futures...
Experimental multi indicators strategy, to catch right entry and avoid noise. Each indicator included in the strategy, assume a value based on its status and because is a trend-follow strategy, some indicator value are higher then the other Backtested on ETHUSDTPERP BINANCE:ETHUSDTPERP
Display the % premium of 4 different Bitcoin Funds relative to the price of Bitcoin in your current chart. BTCC ETF QBTC Fund GBTC Trust VBTC ETN This indicator uses the metrics from the fund management websites to calculate the "Net Asset Value per Unit (NAVPU)" to calculate the true underlying value of the fund. The difference is then compared to the...
This script tracks the premium/discount of Bitcoin perpetual contracts at various exchanges. The premium/discount is calculated against an index price. The index price is calculated from spot exchange prices and are weighted as follows: Bitstamp:28,81% Bittrex:5,5% Coinbase: 38,07% Gemini: 7,34% Kraken: 20,28 The difference between this script and other...
Basically just your standard RSI with a twist. Key differences: 1. Overbought and Oversold levels are moved to a higher and lower level following the nature of cryptocurrency. 2. Added a middle trendline at 50. Above is usually an uptrend, below is a downtrend. 3. Better looking than your typical RSI. 4. Nice pretty colors to please your eyes :) Enjoy.
Overlay the Net Asset Value per Unit (NAVPU) of 4 different Bitcoin Funds on your Bitcoin chart. BTCC ETF QBTC Fund GBTC Trust VBTC ETN This indicator uses the metrics from the fund management websites to calculate the "Net Asset Value per Unit (NAVPU)" to display the true underlying value of the fund. Note that the metrics can change and therefore...
The Pi Cycle indicator has called tops in Bitcoin quite accurately. Assuming history repeats itself, knowledge about when it might happen again could benefit you. The indicator is fairly simple: - A daily moving average of 350 ("long_ma" in script) - A daily moving average of 111 ("short_ma" in script) The value of the long moving average is multiplied by two....
Moving Averages are among the most common trading indicators. They are straightforward to interpret and effective to use. One of the limitations of using moving averages is they can provide buy and sell signals with a relatively high lag , making it very difficult to spot the lows and tops of the trend. Moving averages calculated with a low number of periods...
This implementation of the "2-Year MA Multiplier" gives you some control over the indicator, you can change the multiplier from it's default of 5, you can change the lookback from it's default of 730 days and I've also added three fibonacci traces between the moving average and it's multiple that you can play with. Oh and you can also choose the data source...
BTC Price Multiple comparisons from 2012 and 2016 halving period.
A script to help you plan your entrances and exits with beautiful colors for BTC. It just helps to better highlight the gap between the start of the week and the end. It only work on Weekly. Info : Blue ... you can wait, enjoy your life Green is when you buy Yellow when you enter bull market Orange is when you begin to take care of next week Red when you...
This strategy implements a simply scalping using the RSI (calculated on two periods), the slopes of two MAs ( EMA or SMA ) having different lengths (by default, I use 50 and 200). A trailing stop loss (%) is used. Entry conditions: .) Fast MA > Slow MA and Price > Slow MA and RSI < Oversold Threshold ------> go Long .) Fast MA < Slow MA and Price < Slow MA...