OPEN-SOURCE SCRIPT

Launchpool

Launchpool vs BTC, TOTAL3
.
.
.
.
.
.
.
.
.
.
//version=5
indicator("Custom Currency Index", overlay=false)

// Define the currency pairs
pairs = [""]

// Initialize variables to hold the total price and count
var float total_price = 0.0
var int count = 0

// Loop through each pair to fetch the closing prices
for i = 0 to array.size(pairs) - 1
pair = array.get(pairs, i)
price = request.security(pair, "D", close)
total_price := total_price + price
count := count + 1

// Calculate the average price
average_index = total_price / count

// Plot the custom index
plot(average_index, title="Custom Currency Index", color=color.blue, linewidth=2)

// Add a horizontal line at zero for reference
hline(0, "Zero Line", color=color.gray)
Candlestick analysis

오픈 소스 스크립트

진정한 TradingView 정신에 따라, 이 스크립트의 저자는 트레이더들이 이해하고 검증할 수 있도록 오픈 소스로 공개했습니다. 저자에게 박수를 보냅니다! 이 코드는 무료로 사용할 수 있지만, 출판물에서 이 코드를 재사용하는 것은 하우스 룰에 의해 관리됩니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.

차트에 이 스크립트를 사용하시겠습니까?

면책사항