Die Ressourcen sind geladen. Beförderung...

talib.CDLHARAMI

Dietalib.CDLHARAMI()Die Funktion wird zur Berechnung derHarami-Muster (K-Liniendiagramm: negative und positive Linien).

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

Talib.CDLHARAMI ((inPriceOHLC)

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.CDLHARAMI(records)
    Log(ret)
}
import talib
def main():
    records = exchange.GetRecords()
    ret = talib.CDLHARAMI(records.Open, records.High, records.Low, records.Close)
    Log(ret)
void main() {
    auto records = exchange.GetRecords();
    auto ret = talib.CDLHARAMI(records);
    Log(ret);
}

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

talib.CDLHANGINGMAN talib.CDLHARAMICROSS