Pesquisar
Produtos
Comunidade
Mercados
Notícias
Corretoras
Mais
PT
Começar
Comunidade
/
Ideias
/
Pine講座㊹ バックテスト|Volty Expan Close Strategy の解説
Dólar Americano/Iene Japonês
Educacional
Pine講座㊹ バックテスト|Volty Expan Close Strategy の解説
Por yuya_takahashi_
Seguir
Seguir
Atualizado
26 de ago. de 2019
1
6
23 de ago. de 2019
勢いがある値動きが出てきたときに、
その方向に順張りするロジックです。
自動売買は、一般的なテクニカル指標よりも、
実際の値動きに近い判断をするスキームの方が
良い結果がでる印象があります。
※ TradingView内蔵のストラテジーを
上から順番に解説しています
※ 解説はコードの中で
※ コピペする場合は以下の変更を行ってください
[](全角の角括弧)→(半角の角括弧)
(全角スペース)→(半角スペース)
=====
//
version
=4
strategy("Volty Expan Close Strategy の解説", overlay=true)
//計算用の数値の設定
length = input(5)
numATRs = input(0.75)
// ATR × N の算出
atrs = sma(tr, length)*numATRs
//算出に足る期間があることを確認
if (not na(close[length]))
//バンドの上に買いの逆指値、下に売りの逆指値を設置
strategy.entry("VltClsLE", strategy.long, stop=close+atrs, comment = "VltClsLE")
strategy.entry("VltClsSE", strategy.short, stop=close-atrs, comment = "VltClsSE")
//確認用で描画
plot( close + atrs )
plot( close - atrs )
=====
26 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
.