TradingView
RafaelZioni
27 Ara 2020 10:25

Simple RSI strategy 

Bitcoin / U.S. dollarBitstamp

Açıklama

so this script just take it as teaching how to make easy strategy
many time we try complex one and we fail
thanks to coinrule for his very smart method of pyramid tradingview.com/script/7NNJ0sXB-Pyramiding-Entries-On-Early-Trends-by-Coinrule/
i just here in this very simple rsi strategy want to show how even lame strategy like RSI can be very profitable:)
1. we exit by take profit
2. we make sure that for exit by take profit the stop loss will be far lets say 10% or more
3. this shit only work good in up trending markets:)

why regular rsi strategy not working? because the exit is shity ... it depend on false top that based on RSI above 70 or 80 in general.
in bullish state this will exit us faster then we desire and will cost us loss . in bearish state rsi will not go so high and we exit too late so the stop loss is our our only saver
here by exiting by% we get much better results
so what happen if the trend is bearish? you can can try to do the same just reverse order to create more shorts (sometime it work sometime is not)
end conclusion in bullish trending market even shifty strategy is good
the only reason this one work is actually because of the script of coinrule so i want to thank him on this
happy new year to all TV members
Yorumlar
jxtra20
Is this script repainting?
floriannmartinez
hey rafael, what is the best indicator to detect trends?.. to combine with this one
alphamindset
@floriannmartinez, EMA Ribbons ;)

..........................................................................................................

//For those of you that have a limit on how many indicators you can have on a chart,
//this may help you out in terms of adding multiple MA's while only adding 1 indicator.

study(title="Moving Averages", shorttitle="EMA", overlay=true)
exponential = input(true, title="Exponential MA")

src = close

ma21 = exponential ? ema(src, 21) : sma(src, 21)
ma30 = exponential ? ema(src, 30) : sma(src, 30)
ma50 = exponential ? ema(src, 50) : sma(src, 50)
ma100 = exponential ? ema(src, 100) : sma(src, 100)
ma200 = exponential ? ema(src, 200) : sma(src, 200)

plot( ma21, color=orange, style=line, title="MA21", linewidth=1)
plot( ma30, color=red, style=line, title="MA30", linewidth=1)
plot( ma50, color=purple, style=line, title="MA50", linewidth=1)
plot( ma100, color=green, style=line, title="MA100", linewidth=1)
plot( ma200, color=black, style=line, title="MA200", linewidth=1)

.........................................................................................................

Copy the text in-between the dotted lines and add it as a Pine Script to your chart. Enjoy!

* Then just add the standard volume indicator and your good to go.
RwTrades
Great work.
Be careful guys. You could blindly long past month without looking away coz its went up and up.
This only works in strong uptrend imo.
mohanee
Good one.

Question , long signal has constant value rather than boolean value. How does it work in strategy's when condition ?
heroinwonderland
always exited when you release something, thanks once more x)
Nakamoto2020
Hey my friend is it possible to ad short Position to the script?
patcarapon
I Is it possible to short function?
steelseries125
Hey, amazing script. But ive been trying to combine it with the trailing stop on strategy.exit. Can someone help me with this?
alphamindset
Rafael, thank you the indicator. It works a treat. Cheers!
Daha Fazla