Search
Products
Community
Markets
News
Brokers
More
IN
Get started
Community
/
Ideas
/
Pine講座㊸ バックテスト|Price Channel Strategy(チャネルブレイクアウトで途転)
U.S. Dollar / Japanese Yen
Education
Pine講座㊸ バックテスト|Price Channel Strategy(チャネルブレイクアウトで途転)
By yuya_takahashi_
Follow
Follow
Updated
Aug 21, 2019
2
0
Aug 19, 2019
エントリーのロジックは
タートルズが用いていた手法と同じものです。
ひたすら途転していきます。
トレンドがないと勝てない戦略ですね。
※ TradingView内蔵のストラテジーを
上から順番に解説しています
※ 解説はコードの中で
※ コピペする場合は以下の変更を行ってください
[](全角の角括弧)→(半角の角括弧)
(全角スペース)→(半角スペース)
=====
//
version
=4
strategy("Price Channel Strategy の解説", overlay=true)
length = input(20)
//期間の最高値を算出
hh = highest( high, length )
//期間の最安値を算出
ll = lowest( low, length )
//設定期間以上、ローソク足が生成されていることを確認
if ( not na( close[length] ) )
//常にレンジの上限・下限に逆指値注文を入れておく
strategy.entry( "PChLE", strategy.long, comment="PChLE", stop=hh )
strategy.entry( "PChSE", strategy.short, comment="PChSE", stop=ll )
//確認用で描画
plot( hh ,offset=1 )
plot( ll ,offset=1 )
=====
Aug 21, 2019
Note
次の講座
Beyond Technical Analysis
pinescript
yuya_takahashi_
Follow
小次郎講師公式インジケーターのお申込
bit.ly/2vdSV4Q
小次郎講師のLINE@
bit.ly/2VZQFu3
小次郎講師のチャート情報局
bit.ly/2GvLAEp
Also on:
Related publications
Pine講座① たった2行で移動平均線が出せる
by yuya_takahashi_
Pine講座㉕ TradingViewでバックテストをする
by yuya_takahashi_
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the
Terms of Use
.