|
QuantShare
2010-05-15 12:12:14
0
|
|
Best Answer
Hello,
The Bulkowski's Chart Pattern Index object is a download item, which means that it is a script that downloads data from an another website.
You can access Chart Pattern Index data using the following function:
getseries("_CPI_Patterns", close, LastData)
Or you can create an indicator by clicking on Tools -> Create functions, then typing the following script:
QSFormula formula = cFunctions.CompileFormula("a = getseries('_CPI_Patterns', close, LastData);");
result = formula.GetVectorDouble("a");
|
|