Available translations





loading results
Point Formula
A point formula is a node used to input the [x,y] coordinates of a point.
Point Formula - это узел, используемый для ввода координат [x,y] точки Point.
Nokta formülü, bir noktanın [x,y] koordinatlarını girmek için kullanılan bir düğümdür.
Content
To represent some form of variation of the price or a price derivative over time, a typical point formula consists of the following two coordinates:
Чтобы представить некоторую форму изменения цены или производной цены во времени, типичная формула точки состоит из следующих двух координат:
Fiyatın veya bir fiyat türevinin zaman içindeki bir çeşit değişimini temsil etmek için tipik bir nokta formülü aşağıdaki iki koordinattan oluşur:
- x = datetime and
- x = datetime
- x = tarih saat ve
- y = rate.
- y = oran.
For example
Например:
Örnek olarak
Point SMA 20 Begin
SMA 20 Noktası Başlangıç (Point SMA 20 Begin)
x = record.begin
y = record.previous.sma20 The example above shows the definition of the first of two points necessary to draw the segment of the 20-periods SMA curve for any particular period or candle. In this case, x =
record.begin is the starting datetime of the period and y = record.previous.sma20 is the rate of the 20-periods SMA of the previous period. В примере выше показано определение первой из двух точек, необходимых для построения сегмента кривой 20-периодной SMA для любого конкретного периода или свечи. В данном случае x =
record.begin - это время начала периода, а y = record.previous.sma20 - это значение 20-периодной SMA предыдущего периода. Yukarıdaki örnek, herhangi bir dönem veya mum için 20 dönemlik SMA eğrisinin segmentini çizmek için gerekli iki noktadan ilkinin tanımını göstermektedir. Bu durumda, x =
record.begin dönemin başlangıç tarihidir ve y = record.previous.sma20 önceki dönemin 20 dönemlik SMA oranıdır. Note: The above variables are constructed with information originating at the product definition that references the corresponding plotter module.
Note: Приведенные выше переменные строятся на основе информации, полученной из определения продукта Product Definition, которое ссылается на соответствующий модуль плоттера.
Note: Yukarıdaki değişkenler, ilgili çizici (plotter) modülüne atıfta bulunan ürün tanımından kaynaklanan bilgilerle oluşturulmuştur.
To complete the line segment corresponding to a single period, the closing datetime of the period and the closing rate for the 20-periods SMA are required:
Для завершения сегмента линии, соответствующего одному периоду, требуется дата закрытия периода и курс закрытия для 20-периодной SMA:
Tek bir döneme karşılık gelen çizgi segmentini tamamlamak için, dönemin kapanış tarihi ve 20 dönemlik SMA için kapanış oranı gereklidir:
Point SMA 20 End
SMA 20 Noktası Sonu (Point SMA 20 End)
x = record.end
y = record.sma20 The above system works very well for plotting all sorts of information over the candles, on the charts.
Приведенная выше система очень хорошо работает для построения всевозможной информации по свечам, на графиках.
Yukarıdaki sistem, her türlü bilgiyi mumlar üzerinde, grafiklerde çizmek için çok iyi çalışır.
An oscillator like RSI too needs the definition of the starting and ending datetime of the period as the value for the x-axis. However, the value for axis y fits a different scale.
Такой осциллятор, как RSI, тоже нуждается в определении времени начала и окончания периода в качестве значения для оси x. Однако значение для оси y соответствует другой шкале.
RSI gibi bir osilatör de x ekseni için değer olarak dönemin başlangıç ve bitiş tarihlerinin tanımına ihtiyaç duyar. Ancak, y ekseni için değer farklı bir ölçeğe uyar.
Anyway, the points definition is just as straight forward, for example:
В любом случае, определение точек такое же простое, например:
Her neyse, örneğin nokta tanımı da aynı şekilde basittir:
Point RSI Begin
RSI Başlangıç Noktası (Point RSI Begin)
x = record.begin
y = record.previous.value Point RSI End
RSI Bitiş Noktası (Point RSI End)
x = record.end
y = record.value
Points do not necessarily need to refer to values on the dataset produced by the corresponding data product. For example, absolute values for the y-axis may be used to describe fixed graphical elements, for instance, a horizontal line, or a box.
Точки не обязательно должны ссылаться на значения в наборе данных, созданных соответствующим продуктом данных. Например, абсолютные значения для оси y могут быть использованы для описания фиксированных графических элементов, например, горизонтальной линии или рамки.
Noktaların, ilgili veri ürünü tarafından üretilen veri kümesindeki değerlere atıfta bulunması gerekmez. Örneğin, y ekseni için mutlak değerler, örneğin yatay bir çizgi veya bir kutu gibi sabit grafik öğelerini tanımlamak için kullanılabilir.
Point Begin 20
Başlangıç Noktası 20 (Point Begin 20)
x = record.begin
y = 20 Point End 20
Bitiş Noktası 20 (Point End 20)
x = record.end
y = 20 Point Begin 30
Başlangıç Noktası 30 (Point Begin 30)
x = record.begin
y = 30
Point End 30
Bitiş Noktası 30 (Point End 30)
x = record.end
y = 30
The above four points are used to paint the background of the 20 to 30 value range of the RSI chart. The first two points are also used to draw the dotted line signaling the 20-value mark, and the last two are used for the dotted line indicating the 30-value mark.
Указанные выше четыре точки используются для рисования границ диапазона значений от 20 до 30 на графике RSI. Первые две точки также используются для построения пунктирной линии, обозначающей отметку 20 значений, а последние две - для пунктирной линии, обозначающей отметку 30 значений.
Yukarıdaki dört nokta, RSI grafiğinin 20 ila 30 değer aralığının arka planını boyamak için kullanılır. İlk iki nokta, 20 değer işaretini gösteren noktalı çizgiyi çizmek için de kullanılır ve son ikisi 30 değer işaretini gösteren noktalı çizgi için kullanılır.
Note: The reason from separating the definition of points from the definition of polygons is that any point may be used by one or more polygons.
Note: Причина разделения определения точек и определения полигонов заключается в том, что любая точка может быть использована одним или несколькими полигонами.
Note: Noktaların tanımını polygonların tanımından ayırmanın nedeni, herhangi bir noktanın bir veya daha fazla polygon tarafından kullanılabilmesidir.
Point Formula Menu
The Point Formula node has the following Node Menu items:
The Edit menu item has the following properties:
- action: Edit
- actionFunction:
uiObject.formulaEditor.activate
- label: Edit
- iconPathOn: javascript-code
- iconPathOff: javascript-code
The Delete menu item has the following properties:
- action: Delete UI Object
- actionProject: Visual-Scripting
- askConfirmation: true
- confirmationLabel: Confirm to Delete
- actionFunction:
payload.executeAction
- label: Delete
- iconPathOn: delete-entity
- iconPathOff: delete-entity
Tip: When a menu item is grayed out, it means that Point Formula already has the required child type that the menu item may add, and only that child is allowed for that case.
Point Formula Attaching Rules
The following are the Node Attaching Rules that govern the attachment of Point Formula with other nodes:
Compatible Types:
Point Formula Formula
This section explores Point Formula Node Code.
Initial Value
The initial value for Point Formula is:
"x = record.begin\ny = record.property" Examples
This is a list of examples used on the Point Formula code, collected from this workspace.