The talib.CDLIDENTICAL3CROWS()
function is used to calculate Identical Three Crows (K-line chart: same three crows).
The return value of the talib.CDLIDENTICAL3CROWS()
function is: a one-dimensional array.
array
talib.CDLIDENTICAL3CROWS(inPriceOHLC)
The inPriceOHLC
parameter is used to specify the K-line data.
inPriceOHLC
true
{@struct/Record Record} structure array
function main() {
var records = exchange.GetRecords()
var ret = talib.CDLIDENTICAL3CROWS(records)
Log(ret)
}
import talib
def main():
records = exchange.GetRecords()
ret = talib.CDLIDENTICAL3CROWS(records.Open, records.High, records.Low, records.Close)
Log(ret)
void main() {
auto records = exchange.GetRecords();
auto ret = talib.CDLIDENTICAL3CROWS(records);
Log(ret);
}
The CDLIDENTICAL3CROWS()
function is described in the talib library documentation as: CDLIDENTICAL3CROWS(Records[Open,High,Low,Close]) = Array(outInteger)