찾기
프로덕트
커뮤니티
마켓
뉴스
브로커
더보기
KO
지금 시작
커뮤니티
/
아이디어
/
Pine講座㊸ バックテスト|Pivot Extension Startegy の解説
미국 달러 / 일본 엔
교육
Pine講座㊸ バックテスト|Pivot Extension Startegy の解説
yuya_takahashi_의
팔로우
팔로우
업데이트됨
2019년 8월 23일
1
6
2019년 8월 22일
Pivot high、Pivot lowを検出して
順張りしていくStrategyです。
※ TradingView内蔵のストラテジーを
上から順番に解説しています
※ 解説はコードの中で
※ コピペする場合は以下の変更を行ってください
[](全角の角括弧)→(半角の角括弧)
(全角スペース)→(半角スペース)
=====
//
version
=4
strategy( "Pivot Extension Strategy の解説" ,overlay=true )
//計算用の設定値
leftBars = input(4)
rightBars = input(2)
//pivot high、pivot lowの算出
ph = pivothigh(leftBars, rightBars)
pl = pivotlow(leftBars, rightBars)
//pivot lowに該当する数値がある
if (not na(pl))
//成行で買いエントリー
strategy.entry("PivExtLE", strategy.long, comment="PivExtLE")
//pivot highに該当する数値がある
if (not na(ph))
//成行で売りエントリー
strategy.entry("PivExtSE", strategy.short, comment="PivExtSE")
//確認用で描画
plot( ph ,style=plot.style_circles ,color=color.red ,linewidth=3 )
plot( pl ,style=plot.style_circles ,color=color.red ,linewidth=3 )
=====
2019년 8월 23일
노트
次の講座
Beyond Technical Analysis
pinescript
yuya_takahashi_
팔로우
小次郎講師公式インジケーターのお申込
bit.ly/2vdSV4Q
小次郎講師のLINE@
bit.ly/2VZQFu3
小次郎講師のチャート情報局
bit.ly/2GvLAEp
또한 다음에서도:
관련 발행물
Pine講座① たった2行で移動平均線が出せる
yuya_takahashi_의
Pine講座㉕ TradingViewでバックテストをする
yuya_takahashi_의
면책사항
이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은
이용 약관
을 참고하세요.