cynseok
cynseok
def aroon_up(data, period): return (1 + data.rolling(period).apply(lambda x: pd.Series(x).idxmax(skipna = True))) / period * 100 def aroon_down(data, period): return (1 + data.rolling(period).apply(lambda x: pd.Series(x).idxmin(skipna = True))) / period * 100...
How do I configure client (and server) to use SSL?
running (cepl:repl) from a cepl:make-project package produces an unresponsive window which does not update, closing it crashes sbcl. Works fine on ubuntu running portacle.
I tried executing (cl-vulkan-demo::run) on SBCL running on Windows 10,