Die Ressourcen sind geladen. Beförderung...

talib.CDLSEPARATINGLINES

Dietalib.CDLSEPARATINGLINES()Funktion wird zur Berechnung verwendetTrennlinien (K-Liniendiagramm: Trennlinien).

Der Rücklaufwert dertalib.CDLSEPARATINGLINES()Funktion ist ein einmaliges Array. Reihenfolge

Talib.CDLSEPARATINGLINES ((inPriceOHLC) ist eine Liste von

DieinPriceOHLCDer Parameter wird zur Angabe der K-Liniendaten verwendet. inPriceOHLC wahr {@struct/Record Record} Struktur-Array

function main() {
    var records = exchange.GetRecords()
    var ret = talib.CDLSEPARATINGLINES(records)
    Log(ret)
}
import talib
def main():
    records = exchange.GetRecords()
    ret = talib.CDLSEPARATINGLINES(records.Open, records.High, records.Low, records.Close)
    Log(ret)
void main() {
    auto records = exchange.GetRecords();
    auto ret = talib.CDLSEPARATINGLINES(records);
    Log(ret);
}

DieCDLSEPARATINGLINES()Die Funktion wird in der Dokumentation der Talib-Bibliothek wie folgt beschrieben:CDLSEPARATINGLINES(Records[Open,High,Low,Close]) = Array(outInteger)

talib.CDLRISEFALL3METHODS talib.CDLSHOOTINGSTAR