UnknownUnicorn187266

MaxWarren's Pine Acceleration - 2nd Derivative

This is the acceleration of a chart written in pine. It's the second derivative otherwise the derivative of the momentum.

It shows how fast a stock's momentum is changing and in what direction.

As standard I left the controls in the settings for source and length of the estimate.

I will be incorporating this in other more complicated scripts here shortly
Mã nguồn mở

Với tinh thần TradingView, tác giả của tập lệnh này đã xuất bản nó dưới dạng mã nguồn mở, vì vậy các nhà giao dịch có thể hiểu và xác minh nó. Chúc mừng tác giả! Bạn có thể sử dụng mã này miễn phí, nhưng việc sử dụng lại mã này trong một ấn phẩm chịu sự điều chỉnh của Nội quy nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

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.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?
study(title="MaxW's DMA", shorttitle="MaxW's DMA", overlay=false)
dAccuracy = input(1, minval=1, title="Derivative Estimate")
dSrc = input(close, title="Source")
slope = (dSrc - dSrc[dAccuracy]) / dAccuracy
aAccuracy = input(1, minval=1, title="Acceleration Estimate")
dSlope = (slope - slope[aAccuracy]) / aAccuracy
plot(dSlope)