Ara
Ürünler
Topluluk
Piyasalar
Haberler
Aracı kurum
Daha Fazla
TR
Şimdi başlat
Topluluk
/
Fikirler
/
Pine講座㉜ バックテスト|BB Strategy directed の解説
ABD Doları / Japon Yeni
Eğitim
Pine講座㉜ バックテスト|BB Strategy directed の解説
yuya_takahashi_ tarafından
Takip Et
Takip Et
Güncellendi
1 Ağu 2019
2
5
29 Tem 2019
このストラテジーは、前回解説したものに
・買いのみの戦略
・売りのみの戦略
・買い売り両方の戦略
を選択できる機能を追加されたものです。
コードも2行増えるだけなので簡単ですね!
※ 追加された箇所だけ解説を入れます
=====
//
version
=4
strategy("Bollinger Bands Strategy directed の解説", overlay=true)
source = close
length = input(20, minval=1)
mult = input(2.0, minval=0.001, maxval=50)
//買いのみ、売りのみ、両方を指定する設定項目
//1,0,-1で設定する
//初期値は0
direction = input(0, title = "Strategy Direction", type=input.integer, minval=-1, maxval=1)
//strategy.risk.allow_entry_in( ) で「買いのみ、売りのみ、両方」を指定
// 0 → strategy.direction.all → 両方
//-1 → strategy.direction.short → 売りのみ
// 1 → strategy.direction.long → 買いのみ
strategy.risk.allow_entry_in(direction == 0 ? strategy.direction.all : (direction < 0 ? strategy.direction.short : strategy.direction.long))
basis = sma(source, length)
dev = mult * stdev(source, length)
upper = basis + dev
lower = basis - dev
if (crossover(source, lower))
strategy.entry("BBandLE", strategy.long, stop=lower, oca_name="BollingerBands", oca_type=strategy.oca.cancel, comment="BBandLE")
else
strategy.cancel(id="BBandLE")
if (crossunder(source, upper))
strategy.entry("BBandSE", strategy.short, stop=upper, oca_name="BollingerBands", oca_type=strategy.oca.cancel, comment="BBandSE")
else
strategy.cancel(id="BBandSE")
plot( basis )
plot( upper )
plot( lower )
=====
1 Ağu 2019
Not
次の講座
Beyond Technical Analysis
pinescript
yuya_takahashi_
Takip Et
小次郎講師公式インジケーターのお申込
bit.ly/2vdSV4Q
小次郎講師のLINE@
bit.ly/2VZQFu3
小次郎講師のチャート情報局
bit.ly/2GvLAEp
Aynı zamanda::
İlgili yayınlar
Pine講座㉒ ラインとラベルを組み合わせる
yuya_takahashi_ tarafından
Pine講座㉓ 終値から ±2-ATR にラインを描画する
yuya_takahashi_ tarafından
Pine講座㉔ 取引量を算出してインフォパネルに表示する
yuya_takahashi_ tarafından
Pine講座㉕ TradingViewでバックテストをする
yuya_takahashi_ tarafından
Pine講座㉖ バックテスト|2本のSMAで途転
yuya_takahashi_ tarafından
Pine講座㉗ バックテスト|残高の推移を時系列で表示する
yuya_takahashi_ tarafından
Pine講座㉘ バックテスト|未決済を含めた残高を時系列で表示する
yuya_takahashi_ tarafından
Pine講座㉙ バックテスト|残高とATRで取引量を算出する
yuya_takahashi_ tarafından
Pine講座㉚ バックテスト|算出した取引量で売買する
yuya_takahashi_ tarafından
Pine講座㉛ バックテスト|BB Strategy の解説
yuya_takahashi_ tarafından
Feragatname
Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, işlem veya diğer türden tavsiye veya tavsiyeler anlamına gelmez ve teşkil etmez.
Kullanım Şartları
'nda daha fazlasını okuyun.