Search
Products
Community
Markets
News
Brokers
More
EN
Get started
Community
/
Ideas
/
Pine講座㊻ バックテスト|GetTrendStrategy(win% 88、RR 4)
U.S. Dollar / Japanese Yen
Education
Pine講座㊻ バックテスト|GetTrendStrategy(win% 88、RR 4)
By yuya_takahashi_
Follow
Follow
Updated
Aug 28, 2019
1
6
Aug 27, 2019
今日からユーザーが作成したストラテジーを
解説していきたいと思います。
今回は、GetTrendStrategy。
ストラテジーの中では珍しく5342いいねをつけています。
試してみたところ、
勝率:88%
RR:4
と信じられないくらい
優秀でビックリしましたが、
コードを見てみると、
Pineスクリプトの抜け穴を利用しただけのストラテジーでした。
残念。
=====
//
version
=2
strategy("GetTrendStrategy の解説", overlay=true)
//securityで取得する時間軸
tim=input('160')
//security関数で160分足のopen/closeを取得
out1 = security(tickerid, tim, open)
out2 = security(tickerid, tim, close)
//確認用で描画
plot(out1,color=red)
plot(out2,color=green)
//160分足が陰線 → 陽線で買いエントリー
longCondition = crossover(security(tickerid, tim, close),security(tickerid, tim, open))
if (longCondition)
strategy.entry("long", strategy.long)
//陽線 → 陰線で売り
shortCondition = crossunder(security(tickerid, tim, close),security(tickerid, tim, open))
if (shortCondition)
strategy.entry("short", strategy.short)
=====
このストラテジーは、
security関数で答えがわかってる状態で売買をしています。
勝てて当然ですね。
むしろ、勝率が100%でないことが不思議です。
Aug 28, 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
.