Pesquisar
Produtos
Comunidade
Mercados
Notícias
Corretoras
Mais
PT
Começar
Comunidade
/
Ideias
/
Pine講座㊻ バックテスト|GetTrendStrategy(win% 88、RR 4)
Dólar Americano/Iene Japonês
Educacional
Pine講座㊻ バックテスト|GetTrendStrategy(win% 88、RR 4)
Por yuya_takahashi_
Seguir
Seguir
Atualizado
28 de ago. de 2019
1
6
27 de ago. de 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%でないことが不思議です。
28 de ago. de 2019
Nota
次の講座
Beyond Technical Analysis
pinescript
yuya_takahashi_
Seguir
小次郎講師公式インジケーターのお申込
bit.ly/2vdSV4Q
小次郎講師のLINE@
bit.ly/2VZQFu3
小次郎講師のチャート情報局
bit.ly/2GvLAEp
Também em:
Publicações relacionadas
Pine講座① たった2行で移動平均線が出せる
por yuya_takahashi_
Pine講座㉕ TradingViewでバックテストをする
por yuya_takahashi_
Aviso legal
As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em
Termos de uso
.