I want to do something like this:
But I can't seem to get that syntax to work. Any ideas?
PHP Code:
main() {
...
var xx = ema( custom() );
...
}
function custom() {
return (close(0) - close(-1)) * 3.14;
}
Comment