```talib.CDLSPINNINGTOP()```函数的返回值为:一维数组。
array
talib.CDLSPINNINGTOP(inPriceOHLC)
```inPriceOHLC```参数用于指定K线数据。
inPriceOHLC
true
{@struct/Record Record}结构数组
```javascript
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);
}
CDLSPINNINGTOP()
Die Funktion wird in der Talib-Dokumentation wie folgt beschrieben:CDLSPINNINGTOP(Records[Open,High,Low,Close]) = Array(outInteger)