Peraturantalib.CDLINNECK()
fungsi digunakan untuk menghitungPola di leher (K-line chart: neckline).
Nilai pengembaliantalib.CDLINNECK()
fungsi adalah: array satu dimensi.
Array
Talib.CDLINNECK ((inPriceOHLC)
PeraturaninPriceOHLC
parameter digunakan untuk menentukan data garis K.
inPriceOHLC
benar
Array struktur {@struct/Record Record}
function main() {
var records = exchange.GetRecords()
var ret = talib.CDLINNECK(records)
Log(ret)
}
import talib
def main():
records = exchange.GetRecords()
ret = talib.CDLINNECK(records.Open, records.High, records.Low, records.Close)
Log(ret)
void main() {
auto records = exchange.GetRecords();
auto ret = talib.CDLINNECK(records);
Log(ret);
}
PeraturanCDLINNECK()
Fungsi ini dijelaskan dalam dokumentasi perpustakaan talib sebagai:CDLINNECK(Records[Open,High,Low,Close]) = Array(outInteger)