Is there any function in EFS to get the brick size on a Renko Chart?
I searched the EFS knowledge base but couldn't find anything.
Thanks,
Steve
I searched the EFS knowledge base but couldn't find anything.
Thanks,
Steve
function main(){
if(getCurrentBarCount()==1){
debugPrintln(RenkoBoxSize());
}
return ;
}
function RenkoBoxSize(){
return high(0)-low(0);
}
function main(){
if(getCurrentBarCount()==1){
debugPrintln(RenkoBoxSize());
}
return ;
}
function RenkoBoxSize(){
return high(0)-low(0);
}
Comment