Agustin A
(agaguilara)
Biedrs kopš
1 ieraksti
Sep 25 2019 at 02:46
Hello there my name is Agustin,
I'm stuck programming my tradingview strategy, which involves the Relative Strength Index or by its acronym RSI. The point is that RSI can help traders to identify when an asset is oversold or overbought. An RSI of 30 or below indicates that the asset could be oversold. At the moment, my strategy works well buying when the RSI is at 30.
The problem is when the RSI graph is between 30 and 70 and goes down through 30 (giving a buy) until reaching 26 or any other number below 30. This causes a buy order to be in negatives for a moment. This executed by the instruction: buycondition= rsi==30. See RSI_AAASTRATEGY.jpg to better understand what was previously reported.
What I am looking for is to be able to place a purchase order when the rsi goes up through 30 to channel 30 to 70 after having already gone through 30 when it came down to negatives. Not when it goes through 30 into negatives.
If you can help me raise the instructions for this process, I would appreciate it and give more details about my strategy to the person who solves it.
I'm stuck programming my tradingview strategy, which involves the Relative Strength Index or by its acronym RSI. The point is that RSI can help traders to identify when an asset is oversold or overbought. An RSI of 30 or below indicates that the asset could be oversold. At the moment, my strategy works well buying when the RSI is at 30.
The problem is when the RSI graph is between 30 and 70 and goes down through 30 (giving a buy) until reaching 26 or any other number below 30. This causes a buy order to be in negatives for a moment. This executed by the instruction: buycondition= rsi==30. See RSI_AAASTRATEGY.jpg to better understand what was previously reported.
What I am looking for is to be able to place a purchase order when the rsi goes up through 30 to channel 30 to 70 after having already gone through 30 when it came down to negatives. Not when it goes through 30 into negatives.
If you can help me raise the instructions for this process, I would appreciate it and give more details about my strategy to the person who solves it.
Professional4X
Biedrs kopš
1189 ieraksti
Sep 25 2019 at 22:19
SHOW your code. It's a coding issue.
If it looks too good to be true, it's probably a scam! Let the buyer beware.
nulll
Biedrs kopš
1 ieraksti
Oct 06 2019 at 02:29
@agaguilara, this is what you want
_rsi = rsi(close, 14)
enter_long = crossover(_rsi, 30)
exit_long = crossover(_rsi, 70)
enter_short = crossunder(_rsi, 70)
exit_short = crossunder(_rsi, 30)
strategy.entry(id='Buy it', long=true, qty=1.0, when=enter_long)
strategy.exit(id='Sell it', from_entry='Buy it', qty=1.0, when=exit_long)
strategy.entry(id='Short sell it', long=false, qty=1.0, when=enter_short)
strategy.exit(id='Cover it', from_entry='Short sell it', qty=1.0, when=exit_short)
_rsi = rsi(close, 14)
enter_long = crossover(_rsi, 30)
exit_long = crossover(_rsi, 70)
enter_short = crossunder(_rsi, 70)
exit_short = crossunder(_rsi, 30)
strategy.entry(id='Buy it', long=true, qty=1.0, when=enter_long)
strategy.exit(id='Sell it', from_entry='Buy it', qty=1.0, when=exit_long)
strategy.entry(id='Short sell it', long=false, qty=1.0, when=enter_short)
strategy.exit(id='Cover it', from_entry='Short sell it', qty=1.0, when=exit_short)
Lūdzu ienāciet, lai komentētu.