Peraturantalib.CDLSHOOTINGSTAR()
fungsi digunakan untuk menghitungShooting Star (K-line chart: Shooting Star).
Nilai pengembaliantalib.CDLSHOOTINGSTAR()
fungsi adalah array satu dimensi.
Array
talib.CDLSHOOTINGSTAR ((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.CDLSHOOTINGSTAR(records)
Log(ret)
}
import talib
def main():
records = exchange.GetRecords()
ret = talib.CDLSHOOTINGSTAR(records.Open, records.High, records.Low, records.Close)
Log(ret)
void main() {
auto records = exchange.GetRecords();
auto ret = talib.CDLSHOOTINGSTAR(records);
Log(ret);
}
PeraturanCDLSHOOTINGSTAR()
Fungsi ini dijelaskan dalam dokumentasi perpustakaan talib sebagai:CDLSHOOTINGSTAR(Records[Open,High,Low,Close]) = Array(outInteger)