이 플랫폼은 PINE 언어의 스크립트를 지원하고 호환합니다.Trading View
. PINE 언어는 백테스트 된 라이브 트레이딩 지표와 전략을 만드는 가벼운 동시에 강력한 전략 설계 프로그래밍 언어이며, 100,000 개 이상의 PINE 스크립트를 만든 번창하는 포럼을 가지고 있습니다.
사용자는 다양한 기술 분석 및 거래 전략을 쉽게 액세스하고 적용할 수 있습니다. 사용자는 커뮤니티 스크립트의 도움으로 거래 아이디어를 신속하게 구현하여 처음부터 코드를 작성할 필요성을 제거하고 개발 시간을 크게 줄일 수 있습니다. 초보자 및 경험이 많은 거래자가 다른 기술 지표, 전략 및 프로그래밍 개념을 배우고 이해하는 데 도움이됩니다.
PINE 언어 전략 예제: 슈퍼 트렌드 전략
strategy("supertrend", overlay=true)
[supertrend, direction] = ta.supertrend(input(5, "factor"), input.int(10, "atrPeriod"))
plot(direction < 0 ? supertrend : na, "Up direction", color = color.green, style=plot.style_linebr)
plot(direction > 0 ? supertrend : na, "Down direction", color = color.red, style=plot.style_linebr)
if direction < 0
if supertrend > supertrend[2]
strategy.entry("entry long", strategy.long)
else if strategy.position_size < 0
strategy.close_all()
else if direction > 0
if supertrend < supertrend[3]
strategy.entry("entry short", strategy.short)
else if strategy.position_size > 0
strategy.close_all()
MyLanguage
블록화 시각화