Search
Products
Community
Markets
News
Brokers
More
IN
Get started
Community
/
Ideas
/
Pine講座㊵ バックテスト|InSide Bar Strategy の解説(はらみ足による途転売買)
U.S. Dollar / Japanese Yen
Education
Pine講座㊵ バックテスト|InSide Bar Strategy の解説(はらみ足による途転売買)
By yuya_takahashi_
Follow
Follow
Updated
Aug 15, 2019
1
9
Aug 14, 2019
自分の勉強も兼ねて
TradingView内蔵のストラテジーを解説していますが、
シンプルなストラテジーが多いですね。
事例集みたいな形でしょうか。
はらみ足でエントリーしても、
逆方向のはらみ足まで保有はまずありえないと思います。
色んな事例を組み合わせて
自分のストラテジーをつくってね
ってことですね。
※ TradingView内蔵のストラテジーを
上から順番に解説しています
※ 解説はコードの中で
※ コードをコピペする場合は、[](全角)を (半角)に変更してください
=====
//
version
=4
strategy("InSide Bar Strategy の解説", overlay=true)
//高値と安値がどちらも前日より内側にある
//→ はらみ足
if (high < high[1] and low > low[1])
//陽線
if (close > open)
strategy.entry("InsBarLE", strategy.long, comment="InsBarLE")
//陰線
if (close < open)
strategy.entry("InsBarSE", strategy.short, comment="InsBarSE")
=====
Aug 15, 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
.