Search
Products
Community
Markets
News
Brokers
More
IN
Get started
Community
/
Ideas
/
Pine講座㉟ バックテスト|Prabolic SAR Strategyの解説(パラボリックのブレイクで途転売買)
U.S. Dollar / Japanese Yen
Education
Pine講座㉟ バックテスト|Prabolic SAR Strategyの解説(パラボリックのブレイクで途転売買)
By yuya_takahashi_
Follow
Follow
Updated
Aug 6, 2019
2
3
Aug 2, 2019
今回はパラボリックのストラテジーです。
わりとシンプルです。
TradingViewの良いところは、
こういうバックテストを
・色んな銘柄
・色んな時間軸
で即座に検証できるところですね。
ぜひ、ためしてみてください^^
=====
//
version
=4
strategy("Parabolic SAR Strategy", overlay=true)
//パラボリックの計算値の指定
start = input(0.02)
increment = input(0.02)
maximum = input(0.2)
//パラボリックの算出
psar = sar(start, increment, maximum)
//パラボリックが高値より上
if (psar >= high)
//パラボリックの価格に買いの逆指値
//パラボリックを上抜けたら買いに途転
strategy.entry("ParLE", strategy.long, stop=psar, comment="ParLE")
//条件をみたさない
else
//注文をキャンセル
strategy.cancel("ParLE")
//パラボリックが安値より下
if (psar <= low)
//パラボリックの価格に売りの逆指値
strategy.entry("ParSE", strategy.short, stop=psar, comment="ParSE")
//条件を満たさなくなったら注文をキャンセル
else
strategy.cancel("ParSE")
//確認用でパラボリックをプロット
plot( psar ,style=plot.style_circles ,color=color.red ,linewidth=2 )
=====
Aug 6, 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
.