CENTER OF GRAVITY is a strategy written by devil_machine a student of our AlgoTrading Basic Course in Pine Script . It won the second place in our Christmas Challenge 2022. This Trading System is based on a specific type of indicator called "Center of Gravity" by John Ehlers Name : Center of Gravity + ADX Author : @devil_machine Category : Trend...
Someone sent me this strategy found on YouTube. It is Soheil PKO's "The Best and Most Profitable Scalping Strategy" Best way to find out is to code it =) This strategy uses Moving Average Ribbon, Laguerre RSI, and ADX. This script only displays the MA ribbon, you will need to add Laguerre RSI and ADX separately. Long Entry Criteria: - 16 EMA > 48 EMA > 200...
This strategy is a result of a study to understand better the workings of functions, for loops and the use of lines to visualize price levels. The strategy is a complete rewrite of the older RSI+PA+DCA Strategy with the goal to make it dynamic and to simplify the strategy settings to the bare minimum. In case you are not familiar with the older RSI+PA+DCA...
This strategy is based on the Korea Premium, also known as the “Kimchi Premium,” which indicates how expensive or cheap the price of Bitcoin in Korean Won on a Bitcoin exchange in South Korea is relative to the price of Bitcoin being traded in USD or Tether. Inverse Kimchi Premium RSI was newly defined to create a strategy with Kimchi Premium. Assuming that the...
I will start with the context, and some things to think about when using a strategy tool to back-test ideas. CONTEXT FIRST: This is derived from other people's work, but I honestly hadn't found a mixed indicator MA strategy tool that does what this now does. If it is out there, apologies!! This tool can help back-test various MA trends (SMA, EMA, HMA, VWMA); as...
The Bollinger Bands are among the most famous and widely used indicators. A Bollinger Band is a technical analysis tool defined by a set of trendlines plotted two standard deviations (positively and negatively) away from a simple moving average ( SMA ) of a security's price, but which can be adjusted to user preferences. They can suggest when an asset is oversold...
I hope this strategy is just an idea and a starting point, I use the correlation of the Sp500 with the Btc, this does not mean that this correlation will exist forever!. I love Trading view and I'm learning to program, I find correlations very interesting and here is a simple strategy. This is a trading strategy script written in Pine Script language for use in...
buy when rsi (30) is at 45 and sell when rsi(30) is 65
USAR EN PERÍODO DE 4 HORAS. Cuando el precio de cierre cruza por encima de la EMA de 50 períodos, se genera una señal de compra. Cuando el precio de cierre cruza por debajo de la EMA de 50 períodos, se genera una señal de venta. Utilizaremos el RSI para confirmar las señales generadas por la EMA. Si el RSI está por encima de 50 cuando se genera una señal de...
🎲 Overview 🎯 this is a optimized version based on ATR_RSI_Strategy with no-repaint. Sharpe ratio: 1.4, trade times: 116 , trade symbol: BINANCE:BTCUSDTPERP 15M you can get same backtesting result with the correct settings. 🎲 Strategy Logic 🎯 the core logic is quite simple, use ATR and RSI and SMA 1. when price is in high volatility ( atr_value > atr_ma); 2....
One of the ways I go when I develop strategies is by reducing the number of parameters and removing fixed parameters and levels. In this strategy, I'm trying to create an RSI indicator with a dynamic length. Length is computed based on the correlation between Price and its momentum. You can set min and max values for the RSI, and if the correlation is close to 1,...
The relative strength index is a momentum indicator used in technical analysis. It measures the speed and magnitude of a coin's recent price changes to evaluate overvalued or undervalued conditions in the price of that coin. The RSI is displayed as an oscillator (a line graph essentially) on a scale of zero to 100. When the RSI reaches oversold levels, it can...
Long/short strategy that identifies extreme readings on the rsi as a *momentum signal*, unlike most RSI strategies the script will look to buy or sell the first pullback in the direction of the extreme RSI reading. Enters positions on the first pullback to the 5ema(low)/ 5ema(high) and exits at rolling 12 bar high/ low. The rolling high/ low feature means that if...
---Overview--- The system buys fear and sells greed. Its relies on a Relative Strength Index (RSI) and moving averages (MA) to find oversold and overbought states. It seems to work best in market conditions where the Bond market has a negative Beta to Stocks. Backtests in a longer Timeframe will clearly show this. ---Parameter--- Frequency: Smothens the RSI...
what is "RSI Divergence Strategy"? it is a RSI strategy based this indicator: what it does? it gives buy or sell signals according to RSI Divergences. it also has different variables such as "take profit", "stop loss" and trailing stop loss. how it does it? it uses the "RSI Divergence" indicator to give signal. For detailed information on how it works, you...
This is my own Twist on Larry Connors Simple Tradingideas. It Combines the RSI, Averaging In and the Lowest Bars in a Single System. The current Configuration is designed for the Daily Timeframe. Feel free to play with the Parameters and keep in mind that Larry Intended to buy fear and sell the greed! The Rules are the following: ---Buy--- Buy, if the lowest...
Simple strategy ============= If the last two closes are in ascending order, the rsi is below 50 and ascending, and the current candle is above 200 ema, then LONG. If the last two closes are in descending order, the rsi is above 50 and descending, and the current candle is below 200 ema, then SHORT. LONG Exit strategy: ATR: Last 14 day Lowest: The lowest...
The relative strength index ( RSI ) is a momentum indicator used in technical analysis . RSI measures the speed and magnitude of a security's recent price changes to evaluate overvalued or undervalued conditions in the price of that security. The RSI is displayed as an oscillator (a line graph) on a scale of zero to 100. The RSI can do more than point to...