Hi,
Can
If ( !Ephemeris.isWeekend() )
Work or its something AI made up?
Also, on the forum here I found info that I could use just isWeekend in dsl, without Ephemeris
So in that case, would !isWeekend() work to trigger only on the workdays?
Hi,
Can
If ( !Ephemeris.isWeekend() )
Work or its something AI made up?
Also, on the forum here I found info that I could use just isWeekend in dsl, without Ephemeris
So in that case, would !isWeekend() work to trigger only on the workdays?
It’s a lot easier to use the binding:
Or without the binding to just use
If ( !Ephemeris.isWeekend )
If(Ephemeris.isWeekend == false)