774 visualizzazioni
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 and RSI > Overbought Threshold ------> go Short
Exit conditions:
.) Long entry condition is true and (close >= TP or close <= TSL ) ----> close short position
.) Short entry condition is true and (close <= TP or close >= TSL ) ----> close long position
The strategy performed best on Bitcoin and the most liquid and capitalized Altcoins but works excellent on volatile assets, mainly if they often go trending.
Works best on 3h - 4h time frame.
There's also an optional Volatility filter, which opens the position only if the difference between the two slopes is more than a specific value, which can be set in the study inputs. The purpose is not opening positions if the price goes sideways and the noise is way > than the signal.
Note:
.) the RSI length is 2;
.) the oversold Threshold is 90%;
.) the overbought Threshold is 10%;
.) by default, the trailing stop loss per cent is 1%;
.) by default, the fast MA length is 50;
.) by default, the slow MA length is 200;
.) by default, the MA used is EMA .
Cheers.
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 and RSI > Overbought Threshold ------> go Short
Exit conditions:
.) Long entry condition is true and (close >= TP or close <= TSL ) ----> close short position
.) Short entry condition is true and (close <= TP or close >= TSL ) ----> close long position
The strategy performed best on Bitcoin and the most liquid and capitalized Altcoins but works excellent on volatile assets, mainly if they often go trending.
Works best on 3h - 4h time frame.
There's also an optional Volatility filter, which opens the position only if the difference between the two slopes is more than a specific value, which can be set in the study inputs. The purpose is not opening positions if the price goes sideways and the noise is way > than the signal.
Note:
.) the RSI length is 2;
.) the oversold Threshold is 90%;
.) the overbought Threshold is 10%;
.) by default, the trailing stop loss per cent is 1%;
.) by default, the fast MA length is 50;
.) by default, the slow MA length is 200;
.) by default, the MA used is EMA .
Cheers.
Note di rilascio:
Added the alerts.
Note di rilascio:
A new version of this scalping strategy uses the RSI indicator.
I have improved the exit conditions in this version, and I implemented the alters using the alert() function.
Now, the alters can inform you correctly about every entry and exit conditions.
I have improved the exit conditions in this version, and I implemented the alters using the alert() function.
Now, the alters can inform you correctly about every entry and exit conditions.
Note di rilascio:
Modified the comments.
Commenti
1) the fees
2) the max drawdown.
Therefore, the timeframe of 3h-4h is the right compromise in the BTC / USDT pair.
Tradingview data doesn't show what price movement did inside the candle.
The ideal would be to intercept when the strategy.exit command is executed to trigger the alert.
Do you have any suggestions?
If you find a solution, let me know my friend.
Thumbs up for your work !
In this latest version of the strategy, I have changed the management of the alarms, and it is actually possible to intercept the execution of the "strategy.exit" function.
You need to create an "alert's notification message" using the control panel and enter the core corresponding placeholder.
Da un'occhiata anche allo script "Scalping using RSI 2 indicator with TP and TSL" per un'eventualmente suo utilizzo in un bot. Devi impostare correttamente le percentuali di TP e TSL.