[TradingView] 15-3.PineScript 적용 사례(고변동성 시장)
본문 바로가기
Trading View

[TradingView] 15-3.PineScript 적용 사례(고변동성 시장)

by 코딩 Play 2024. 1. 29.

3. 고변동성 시장 (High Volatility Markets)

  • 상황: 가격 변동이 크고 예측이 어려운 시장.
  • 스크립트 사례: 변동성 지표(예: Bollinger Bands, ATR)를 사용한 전략.
  • 적용: 가격 변동 폭을 기반으로 거래 진입/탈출 포인트를 결정합니다.

고변동성 시장용 코드 예시: Bollinger Bands 전략

//@version=4
strategy("Bollinger Bands - High Volatility Market", shorttitle="BB High Vol", overlay=true)

length = input(20, title="Length")
mult = input(2.0, title="Multiplier")

basis = sma(close, length)
dev = mult * stdev(close, length)
upper = basis + dev
lower = basis - dev

plot(upper, "Upper Band", color=color.red)
plot(lower, "Lower Band", color=color.green)

longCondition = close < lower
shortCondition = close > upper

if (longCondition)
    strategy.entry("Long", strategy.long)

if (shortCondition)
    strategy.close("Long")

 

 

최근댓글

최근글

skin by © 2024 ttuttak