//陽線&始値>前日終値 if (close > open and open > close[1]) //買いエントリー strategy.entry("BarUp", strategy.long) //陰線&始値<前日終値 if (close < open and open < close[1]) //売りエントリー strategy.entry("BarDn", strategy.short) =====
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.