Dietalib.CDLSPINNINGTOP()
Funktion wird zur Berechnung verwendetSpinning Top (K-Liniendiagramm: Spinning Top).
Der Rücklaufwert dertalib.CDLSPINNINGTOP()
Funktion ist: ein einmaliges Array.
Reihenfolge
Ich bin nicht derjenige, der das Problem hat. Ich bin nicht derjenige, der es hat.
DieinPriceOHLC
Der Parameter wird zur Angabe der K-Liniendaten verwendet.
inPriceOHLC
wahr
{@struct/Record Record} Struktur-Array
function main() {
var records = exchange.GetRecords()
var ret = talib.CDLSPINNINGTOP(records)
Log(ret)
}
import talib
def main():
records = exchange.GetRecords()
ret = talib.CDLSPINNINGTOP(records.Open, records.High, records.Low, records.Close)
Log(ret)
void main() {
auto records = exchange.GetRecords();
auto ret = talib.CDLSPINNINGTOP(records);
Log(ret);
}
DieCDLSPINNINGTOP()
Die Funktion wird in der Dokumentation der Talib-Bibliothek wie folgt beschrieben:CDLSPINNINGTOP(Records[Open,High,Low,Close]) = Array(outInteger)