I'm trying to write an EFS that doesn't take trades from 1200 to 1400 but I'm not having success here is part of it
var vt1 = 1200
var vt2 = 1400
(getHour()*100)+getMinute()) > vt1 && (getHour()*100)+getMinute()) < vt2 == false &&
the syntax is killing me
is there a better way, or at least a way that works?
var vt1 = 1200
var vt2 = 1400
(getHour()*100)+getMinute()) > vt1 && (getHour()*100)+getMinute()) < vt2 == false &&
the syntax is killing me
is there a better way, or at least a way that works?
Comment