PINE LIBRARY
Cập nhật New_Concepts_in_Technical_Trading_Systems

Library "New_Concepts_in_Technical_Trading_Systems"
A library for trading with mathematical indicators as described by J. Welles Wilder Jr. in 1978
psar(highSeries, lowSeries, closeSeries, start, increment, max)
psar calculates the parabolic SAR for the given series. Uses defaults as described by Wilder
Parameters:
highSeries (float): the series of high price values
lowSeries (float): the series of low price values
closeSeries (float): the series of close price values
start (float): the initial acceleration factor
increment (float): amount the acceleration factor is incremented each step
max (float): the maximum acceleration factor
Returns: the value of the stop and reverse price
momentum(closeSeries)
momentum calculates the momentum value, representing an acceleration of the current trend direction. Also calculates the trend balancing point which is a pivot to the momentum increasing or decreasing.
Parameters:
closeSeries (float): the series of close price values
Returns: the value of the momentum and the next trend balance point
A library for trading with mathematical indicators as described by J. Welles Wilder Jr. in 1978
psar(highSeries, lowSeries, closeSeries, start, increment, max)
psar calculates the parabolic SAR for the given series. Uses defaults as described by Wilder
Parameters:
highSeries (float): the series of high price values
lowSeries (float): the series of low price values
closeSeries (float): the series of close price values
start (float): the initial acceleration factor
increment (float): amount the acceleration factor is incremented each step
max (float): the maximum acceleration factor
Returns: the value of the stop and reverse price
momentum(closeSeries)
momentum calculates the momentum value, representing an acceleration of the current trend direction. Also calculates the trend balancing point which is a pivot to the momentum increasing or decreasing.
Parameters:
closeSeries (float): the series of close price values
Returns: the value of the momentum and the next trend balance point
Phát hành các Ghi chú
v2 - where I realized the I've gotten the concepts wrong when looking at momentum.I previously thought the trend balancing point was the same for long and short directions, which gave me weird results using a strategy on top of it. Realizing that, I thought it to be much more ergonomic using separate functions for the balance points instead of returning a tuple of values.
new:
nextTrendBalancePointShort(closeSeries)
calculates the trend balance point for the next candle when short
Parameters:
closeSeries (float): the series of close price values
Returns: the point the price must close above in order to reverse the current position
nextTrendBalancePointLong(closeSeries)
calculates the trend balance point for the next candle when long
Parameters:
closeSeries (float): the series of close price values
Returns: the point the price must close below in order to reverse the current position
changed:
psar(highSeries, lowSeries, closeSeries, start, increment, max)
calculates the parabolic SAR for the given series. Uses defaults as described by Wilder
Parameters:
highSeries (float): the series of high price values
lowSeries (float): the series of low price values
closeSeries (float): the series of close price values
start (float): the initial acceleration factor
increment (float): amount the acceleration factor is incremented each step
max (float): the maximum acceleration factor
Returns: the value of the stop and reverse price
momentum(closeSeries)
calculates the momentum value, representing an acceleration of the current trend direction
Parameters:
closeSeries (float): the series of close price values
Returns: the value of the momentum
Thư viện Pine
Theo tinh thần TradingView thực sự, tác giả đã xuất bản mã Pine này dưới dạng thư viện nguồn mở để các lập trình viên Pine khác trong cộng đồng của chúng tôi có thể sử dụng lại. Xin tri ân tác giả! Bạn có thể sử dụng thư viện này riêng tư hoặc trong các bài đăng nguồn mở khác. Tuy nhiên, bạn cần sử dụng lại mã này theo Nội quy chung.
Thông báo miễn trừ trách nhiệm
Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.
Thư viện Pine
Theo tinh thần TradingView thực sự, tác giả đã xuất bản mã Pine này dưới dạng thư viện nguồn mở để các lập trình viên Pine khác trong cộng đồng của chúng tôi có thể sử dụng lại. Xin tri ân tác giả! Bạn có thể sử dụng thư viện này riêng tư hoặc trong các bài đăng nguồn mở khác. Tuy nhiên, bạn cần sử dụng lại mã này theo Nội quy chung.
Thông báo miễn trừ trách nhiệm
Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.