Available translations
loading results
Incoming Signals
This node defines the location within a Trading System at which an incoming Signal will be made available.
Этот узел определяет местоположение в торговой системе, в котором будет доступен входящий сигнал.
Bu düğüm, bir Ticaret Sistemi içinde gelen bir Sinyalin kullanıma sunulacağı konumu tanımlar.
Content
In other words, an Incoming Signal node receives the signal information and then injects this data into a specific part of a trading system.
Другими словами, узел входящего сигнала получает сигнальную информацию, а затем вводит эти данные в определенную часть торговой системы.
Başka bir deyişle, bir Gelen Sinyal düğümü sinyal bilgilerini alır ve daha sonra bu verileri bir ticaret sisteminin belirli bir bölümüne enjekte eder.
Types of Signals
Sinyal Türleri
There are three types of signals that can be received:
Alınabilecek üç tür sinyal vardır:
Candle Sync Signals
Mum Senkronizasyon Sinyalleri
Keeping the bots of provider and recipient on the same candle is vital for trading signals to actually be useful. Therefore, Candle Sync signals are the foundational use of the Incoming Signal node. It communicates the candle on which the current incoming signal belongs. This allows your bots to identify the exact same candle on which the provider sent the signal allowing yours and the provider's bot to stay in sync.
Sağlayıcı ve alıcı botlarını aynı mum üzerinde tutmak, alım satım sinyallerinin gerçekten yararlı olması için hayati önem taşır. Bu nedenle, Mum Senkronizasyon sinyalleri Gelen Sinyal düğümünün temel kullanımıdır. Mevcut gelen sinyalin ait olduğu mumu iletir. Bu, botlarınızın, sağlayıcının sinyali gönderdiği aynı mumu tanımlamasına olanak tanıyarak sizin ve sağlayıcının botunun senkronize kalmasını sağlar.
Receiving a candle sync signal can be achieved by attaching an Incoming Signal node to a Trading System node. Then adding a child Outgoing Signal Reference node. Then establishing a reference from the Incoming Signal Reference node to the Trading System Signal node held under the Social Trading Bot of the provider.
Bir mum senkronizasyon sinyalinin alınması, bir Ticaret Sistemi düğümüne bir Gelen Sinyal düğümü eklenerek gerçekleştirilebilir. Ardından bir alt Giden Sinyal Referans düğümü eklenir. Ardından Gelen Sinyal Referansı düğümünden sağlayıcının Sosyal Ticaret Botu altında tutulan Ticaret Sistemi Sinyali düğümüne bir referans oluşturulur.
Note: You can think of this node as the one that activates the Trading Signals functionality in your Trading System.
Event Signals
Olay Sinyalleri
Event signals allow the signal provider to send information concerning trading system events. Examples of such events are the Trigger On Event, Trigger Off Event, Take Position Event, etc.
Olay sinyalleri, sinyal sağlayıcının ticaret sistemi olaylarıyla ilgili bilgi göndermesine olanak tanır. Bu tür olaylara örnek olarak Tetik Açma Olayı, Tetik Kapatma Olayı, Pozisyon Alma Olayı vb. verilebilir.
Receiving event signals is very straightforward. Follow these steps:
Olay sinyallerini almak çok basittir. Aşağıdaki adımları izleyin:
- Find the event which you would like to receive from the provider's Social Trading Bot.
- Sağlayıcının Sosyal Ticaret Botundan almak istediğiniz etkinliği bulun.
- Add an Incoming Signals node to the appropriate event within your trading system.
- Ticaret sisteminizdeki uygun olaya bir Gelen Sinyaller düğümü ekleyin.
- Attach a child Incoming Signal Reference node.
- Bir alt Gelen Sinyal Referansı düğümü ekleyin.
- Establish a reference from the Incoming Signal Reference node to the appropriate Trading Strategy Signals node under the Provider's Social Trading Bot.
- Gelen Sinyal Referansı düğümünden Sağlayıcının Sosyal Ticaret Botu altındaki uygun Ticaret Stratejisi Sinyalleri düğümüne bir referans oluşturun.
Finally configure how you would like your Trading System to interpret the signal information:
Son olarak, Ticaret Sisteminizin sinyal bilgilerini nasıl yorumlamasını istediğinizi yapılandırın:
Note: Signals do not force your trading system to do anything. It is completely up to you how you use the information from the signal.
Note: Sinyaller, ticaret sisteminizi herhangi bir şey yapmaya zorlamaz. Sinyalden gelen bilgileri nasıl kullanacağınız tamamen size bağlıdır.
To use signal information set up the logic to interpret the signal in the Javascript Code node of the Event's Condition node.
Sinyal bilgilerini kullanmak için, Olay'ın Koşul düğümünün Javascript Kodu düğümünde sinyali yorumlayacak mantığı ayarlayın.
Here is a basic example the registers
true
when the event signal is received. İşte olay sinyali alındığında kayıtların doğru olduğu temel bir örnek.
if (signals !== undefined && signals.length > 0) {
true
} else {
false
}
Formula Signals
Formül Sinyalleri
Formula Signals allow the signal provider to send information coming out of trading system formulas. Examples of such formulas are, Target Rate, Order Rate, Target Size In Base Asset, etc.
Formül Sinyalleri, sinyal sağlayıcının ticaret sistemi formüllerinden çıkan bilgileri göndermesine izin verir. Bu tür formüllere örnek olarak Hedef Oran, Emir Oranı, Temel Varlıktaki Hedef Büyüklük vb. verilebilir.
Receiving a formula signal is the same as receiving an event signal with a few differences on how to set up the logic to interpret the incoming signal data.
Bir formül sinyali almak, gelen sinyal verilerini yorumlamak için mantığın nasıl kurulacağı konusunda birkaç farkla bir olay sinyali almakla aynıdır.
To use Formula Signal data set up the logic within the associated Formula node of that part of the Trading System.
Formül Sinyali verilerini kullanmak için mantığı, Ticaret Sisteminin o bölümünün ilişkili Formül düğümü içinde kurun.
Here is a basic example of receiving this data and putting it into variable called lastSignalFormulaValue:
İşte bu verileri alıp
lastSignalFormulaValue
adlı değişkene koymanın temel bir örneği: let lastSignalFormulaValue = 0
for (let i = 0; i < signals.length; i++) {
let signal = signals[i]
lastSignalFormulaValue = signal.source.tradingSystem.node.formula.value
}
lastSignalFormulaValue
Tip: The signal object is a JavaScript object that holds all the information delivered by the trading signal. Accessing various properties of this object will allow you to engage all the information provided by the signal. For example, to gather the value sent by a formula signal you would access these properties: signal.source.tradingSystem.node.formula.value
Tip: Sinyal nesnesi, alım satım sinyali tarafından iletilen tüm bilgileri tutan bir JavaScript nesnesidir. Bu nesnenin çeşitli özelliklerine erişmek, sinyal tarafından sağlanan tüm bilgileri kullanmanıza olanak tanır. Örneğin, bir formül sinyali tarafından gönderilen değeri toplamak için şu özelliklere erişebilirsiniz: signal.source.tradingSystem.node.formula.value
Note: Formula Signals that provide context data will need to be handled by assigning additional values to additional variables.
Note: Bağlam verileri sağlayan Formül Sinyallerinin ek değişkenlere ek değerler atanarak ele alınması gerekecektir.
Incoming Signals Menu
The Incoming Signals node has the following Node Menu items:
The Add Incoming Signal Reference menu item has the following properties:
- action: Add UI Object
- label: Add Incoming Signal Reference
- relatedUiObject: Incoming Signal Reference
- actionFunction:
payload.executeAction
- relatedUiObjectProject: Trading-Signals
- actionProject: Visual-Scripting
The Delete menu item has the following properties:
- action: Delete UI Object
- actionProject: Visual-Scripting
- askConfirmation: true
- confirmationLabel: Confirm to Delete
- label: Delete
- iconPathOn: delete-entity
- iconPathOff: delete-entity
- actionFunction:
payload.executeAction
Tip: When a menu item is grayed out, it means that Incoming Signals already has the required child type that the menu item may add, and only that child is allowed for that case.
Incoming Signals Children
The Incoming Signals node has the following childrenNodesProperties:
The Incoming Signal References node property features the following properties:
- name:
incomingSignalReferences
- type: array
- childType: Incoming Signal Reference
- autoAdd: false
Incoming Signals Attaching Rules
The following are the Node Attaching Rules that govern the attachment of Incoming Signals with other nodes:
Compatible Types: