거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

Linear Regression calculation based on pine script v4 - MetaTrader 5용 지표

조회수:
3977
평가:
(7)
게시됨:
2023.12.25 07:55
업데이트됨:
2023.12.29 17:16
linreg.mq5 (3.03 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Linear regression curve

A line that best fits the prices specified over a user-defined time period. It is calculated using the least squares method. The result of this function is calculated using the formula: linreg = intercept + slope * (length - 1 - offset), where length is the y argument, offset is the z argument, intercept and slope are the values calculated with the least squares method on source series (x argument)

pine script v4 function I/O

linreg(source, length, offset) → series[float]

This indicator includes a simple function to calculate the linreg function based on pine script. This function can be used as a copy and paste snippet in conversion projects from tradingview platform.

ScreenshotLinreg


Candle ZigZag Candle ZigZag

Candle ZigZag is an indicator which changes its leg if a candlestick color changes

Input and output of onnx model Input and output of onnx model

The script is useful for inspecting the structure of ONNX models, providing insights into the input and output, their names, and their properties. It is particularly helpful for debugging and understanding the characteristics of ONNX models used in machine learning applications.

COLLECT ALL INDICATORS DATA COLLECT ALL INDICATORS DATA

This Script collects all MQL5 built-in indicators buffers and stores them in a CSV file for analysis purposes

Volume Profile Volume Profile

This is an indicator for showing volume profile on the chart, using simple calculations and very fast execution.