Greetings,
¿Is there any way for getting the info who is displayed into Price/Volume esignal standard charts?.
I've tryed with:
var xClose;
var xVolume;
function main(Symbol){
if(bInit == false){
if(Symbol == null) Symbol = getSymbol();
var vSymbolT = Symbol+",T";
xClose = close(sym(vSymbolT));
xVolume = volume(sym(vSymbolT));
bInit = true;
}
debugPrint(xClose.getValue(0));
debugPrintln( xVolume.getValue(0));
return null;
}
but don't work fine. My purpose is to get two arrays; one for daily price info and other for daily volume info.
Thanks very much.
¿Is there any way for getting the info who is displayed into Price/Volume esignal standard charts?.
I've tryed with:
var xClose;
var xVolume;
function main(Symbol){
if(bInit == false){
if(Symbol == null) Symbol = getSymbol();
var vSymbolT = Symbol+",T";
xClose = close(sym(vSymbolT));
xVolume = volume(sym(vSymbolT));
bInit = true;
}
debugPrint(xClose.getValue(0));
debugPrintln( xVolume.getValue(0));
return null;
}
but don't work fine. My purpose is to get two arrays; one for daily price info and other for daily volume info.
Thanks very much.
Comment