Pesquisar
Produtos
Comunidade
Mercados
Notícias
Corretoras
Mais
PT
Começar
Comunidade
/
Ideias
/
Pine講座㊺ バックテスト|Consecutive Up/Down Strategy の解説
Dólar Americano/Iene Japonês
Educacional
Pine講座㊺ バックテスト|Consecutive Up/Down Strategy の解説
Por yuya_takahashi_
Seguir
Seguir
Atualizado
28 de ago. de 2019
1
8
6
6
26 de ago. de 2019
連続陽線・連続陰線で途転売買していくストラテジーです。
これで、内蔵のストラテジーはすべて完了です!
次回以降は、サードパーティのものを確認して、
Pine講座もそろそろお終いですね。
※ TradingView内蔵のストラテジーを
上から順番に解説しています
※ 解説はコードの中で
※ コピペする場合は以下の変更を行ってください
[](全角の角括弧)→(半角の角括弧)
(全角スペース)→(半角スペース)
=====
//
version
=4
strategy( "Consecutive Up/Down Strategy の解説", overlay=false )
//連続の数を設定
consecutiveBarsUp = input(3)
consecutiveBarsDown = input(3)
price = close
//連続上昇をカウント
ups = 0.0
ups := price > price[1] ? nz(ups[1]) + 1 : 0
//連続下降をカウント
dns = 0.0
dns := price < price[1] ? nz(dns[1]) + 1 : 0
//連続上昇が設定値以上のとき
if (ups >= consecutiveBarsUp)
//買いエントリー
strategy.entry("ConsUpLE", strategy.long, comment="ConsUpLE")
//連続下降が設定値以上のとき
if (dns >= consecutiveBarsDown)
//売りエントリー
strategy.entry("ConsDnSE", strategy.short, comment="ConsDnSE")
plot( ups ,color=color.red )
plot( dns ,color=color.blue )
=====
27 de ago. de 2019
Nota
次の講座
28 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
.