可以称之为“回归趋势”。 pine 脚本中的工具?
TradingView的UI中有这个方便的回归趋势工具,它可以生成指定时间段的趋势通道。
我正在尝试创建一个 pine 脚本来使用此回归趋势并自动生成过去 1 个月、3 个月、6 个月的趋势通道,然后分析它们的趋势强度。
不过,我已经检查了他们的 Pine 脚本手册n而且似乎没有 API 可供我在 pine 脚本中调用该工具。
我的问题是,
- 是否可以使用 pine 脚本调用此“回归趋势”工具?
- 如果不可能,有没有办法在 Pine Script 中生成趋势通道并计算趋势强度?
TradingView has this convenient Regression Trend tool in its UI, which can generate the trend channel for a specified period of time.
I'm trying to create a pine script to use this Regression Trends and auto generate trend channels for the past 1 month, 3 months, 6 months, then analyze their trend strength.
However, I have checked their Pine Script manualn and it doesn't seem like there is an API for me to call the tool in pine script.
My questions are,
- Is it possible to call this "Regression Trend" tool using pine script?
- If not possible, is there a way to generate trend channels and calculate the trend strength in Pine Script?
Please see the picture below for what I'm trying to accomplish.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
回答我自己的问题。以下脚本创建与回归工具相同的趋势线。请注意,该脚本在 Pine Script v5 env 中运行。
Answering my own question. The following script creates trend lines that are identical to the Regression Tool. Please note that the script works in Pine Script v5 env.