Hi,
Series Syntax (eg.)
cci( nLength [, Series | sym() | inv() ][, nBarIndex ] )
why not?
cci( nLength [, Series ] [, sym() ] [, inv() ][, nBarIndex ] )
Around these parameters to combine must always form a function:
// <--- snip
function main()
{
var sCCI20 = cci(20, efsInternal("hlc3", inv(5)));
}
function hlc3()
{
return ((high() + low() + close()) / 3); //calculate hlc3
}
// <--- snip
You should fire your system designers!
Regards,
geme
Series Syntax (eg.)
cci( nLength [, Series | sym() | inv() ][, nBarIndex ] )
why not?
cci( nLength [, Series ] [, sym() ] [, inv() ][, nBarIndex ] )
Around these parameters to combine must always form a function:
// <--- snip
function main()
{
var sCCI20 = cci(20, efsInternal("hlc3", inv(5)));
}
function hlc3()
{
return ((high() + low() + close()) / 3); //calculate hlc3
}
// <--- snip
You should fire your system designers!
Regards,
geme
Comment