Pesquisar
Produtos
Comunidade
Mercados
Notícias
Corretoras
Mais
PT
Começar
Comunidade
/
Ideias
/
Pine講座㊱ バックテスト|RSI Strategyの解説(RSIによる途転売買)
Dólar Americano/Iene Japonês
Educacional
Pine講座㊱ バックテスト|RSI Strategyの解説(RSIによる途転売買)
Por yuya_takahashi_
Seguir
Seguir
Atualizado
7 de ago. de 2019
1
9
6 de ago. de 2019
今回は「RSI Strategy」のコードを解説します!
※ TradingView内蔵のストラテジーを
上から順番に解説しています
※ 解説はコードの中で
このストラテジーは、エントリーしたあと、
じわじわ逆方向に動くと大変です。
あまり良いスキームではありませんね。
(ハマる値動きはあると思います)
=====
//
version
=4
strategy( "RSI Strategy の解説" )
//設定の項目と初期値の指定
//RSIを計算する期間
length = input( 14 )
//買いエントリーの基準となるライン
overSold = input( 30 )
//売りエントリーの基準となるライン
overBought = input( 70 )
//計算に使う価格
price = close
//RSIの計算
vrsi = rsi(price, length)
//RSIの計算値がある
if (not na(vrsi))
//基準のライン(初期値:30)を上抜けたら
if (crossover(vrsi, overSold))
//買いエントリー
strategy.entry("RsiLE", strategy.long, comment="RsiLE")
//基準のライン(初期値:70)を下抜けたら
if (crossunder(vrsi, overBought))
//売りエントリー
strategy.entry("RsiSE", strategy.short, comment="RsiSE")
//確認用で描画
plot( vrsi )
hline( overSold )
hline( overBought )
=====
7 de ago. de 2019
Nota
次の講座
Beyond Technical Analysis
pinescript
yuya_takahashi_
Seguir
小次郎講師公式インジケーターのお申込
bit.ly/2vdSV4Q
小次郎講師のLINE@
bit.ly/2VZQFu3
小次郎講師のチャート情報局
bit.ly/2GvLAEp
Também em:
Publicações relacionadas
Pine講座① たった2行で移動平均線が出せる
por yuya_takahashi_
Pine講座㉕ TradingViewでバックテストをする
por yuya_takahashi_
Aviso legal
As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em
Termos de uso
.