reees

Algebra

reees アップデート済   
Library "Algebra"

Algebra functions.

line_fromXy(x1, y1, x2, y2)
  Get line slope and y-intercept from coordinates
  Parameters:
    x1: x coordinate 1 (int - bar index)
    y1: y coordinate 1 (float - price/value)
    x2: x coordinate 2 (int - bar index)
    y2: y coordinate 2 (float - price/value)
  Returns: of line

line_getPrice(x, slope, yInt)
  Get line slope and y-intercept from coordinates
  Parameters:
    x: x coordinate to solve for y (int - bar index)
    slope: slope of line (float)
    yInt: y-intercept of line (float)
  Returns: y (price/value)
リリースノート:
v2

New functions:
line_getRightTriSides() - Get length of sides of a right triangle formed by a given line
line_length() - Get length of line, given a line object or two sets of coordinates

Added:
line_getRTriSides(x1, y1, x2, y2, l)
  Get length of sides of a right triangle formed by a given line
  Parameters:
    x1: x coordinate 1 (int - optional, required if argument l is not specified)
    y1: y coordinate 1 (float - optional, required if argument l is not specified)
    x2: x coordinate 2 (int - optional, required if argument l is not specified)
    y2: y coordinate 2 (float - optional, required if argument l is not specified)
    l: line object (line - optional, required if x1, y1, x2, y2 agruments are not specified)
  Returns:

line_length(x1, y1, x2, y2, l)
  Get length of line, given a line object or two sets of coordinates
  Parameters:
    x1: x coordinate 1 (int - optional, required if argument l is not specified)
    y1: y coordinate 1 (float - optional, required if argument l is not specified)
    x2: x coordinate 2 (int - optional, required if argument l is not specified)
    y2: y coordinate 2 (float - optional, required if argument l is not specified)
    l: line object (line - optional, required if x1, y1, x2, y2 agruments are not specified)
  Returns: length of line (float)
リリースノート:
v3
Renamed line_getRTriSides() to line_getRtSides()

Added:
line_getRtSides(x1, y1, x2, y2, l)
  Get length of sides of a right triangle formed by a given line
  Parameters:
    x1: x coordinate 1 (int - optional, required if argument l is not specified)
    y1: y coordinate 1 (float - optional, required if argument l is not specified)
    x2: x coordinate 2 (int - optional, required if argument l is not specified)
    y2: y coordinate 2 (float - optional, required if argument l is not specified)
    l: line object (line - optional, required if x1, y1, x2, y2 agruments are not specified)
  Returns:

Removed:
line_getRTriSides(x1, y1, x2, y2, l)
  Get length of sides of a right triangle formed by a given line
リリースノート:
v4

Added:
line_getPrice_fromXy(x, x1, y1, x2, y2)
  Get price at X coordinate, given two points on a line
  Parameters:
    x: x coordinate to solve for y (int - bar index)
    x1: x coordinate 1 (int - bar index)
    y1: y coordinate 1 (float - price/value)
    x2: x coordinate 2 (int - bar index)
    y2: y coordinate 2 (float - price/value)
  Returns: y (price/value)

Pineライブラリ

TradingViewの精神に則り、作者はPineコードをオープンソースライブラリとして公開し、コミュニティの他のPineプログラマーが再利用できるようにしました。作者に敬意を表します!このライブラリを個人的に、または他のオープンソースの投稿で使用することができますが、、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

このライブラリを使用したいですか?

以下の行をコピーして、スクリプト内に貼り付けてください。