Russ Tokuyama
Russ Tokuyama
Confirming that @mike576's fix: ``` record(data.current(symbol('AAPL'),"close")) ``` does work in a notebook cell. The code in the [tutorial](https://zipline.ml4trading.io/beginner-tutorial.html) for what to put in a notebook cell is incorrect. ``` record(AAPL=data[symbol('AAPL')].price)...
@joelspadin 's comment worked for me.
Some improvement has been made to the Python client through the use of Tree-sitter. See [Release v 4.44.0](https://github.com/Olical/conjure/releases/tag/v4.44.0). Apologies for the self-promotion. :grin:
The Python client does the same thing. It returns the last line of the response as the return value while the other lines are treated as output. The buffer shows:...
See [conjure.remote.stdio2: Rebuilding the foundation of stdio support](https://github.com/Olical/conjure/discussions/500) for what things might look like.
This is rather late but I hope it helps. I had the same trouble on MacOS. According to the jupyter_contrib_nbextensions docs about [Conda installation](https://jupyter-contrib-nbextensions.readthedocs.io/en/latest/install.html#conda), you don't need to run `jupyter...
@trev-dev A work-around that you can use today is to have a `(defpackage :stumpwm)` form at the top of your buffer. Then subsequent evaluation of variables and functions will be...
See https://github.com/Olical/conjure/discussions/557
@russtoku wrote: > Is this the desired or expected behavior? > > > An `in-package` form should set the current package that all subsequent evaluations occur in regardless of a...
When I read the [Quick Start Guide for the Guile Client](https://github.com/Olical/conjure/wiki/Quick-start:-Guile-(socket)), it looked like it could be forced into service. Unfortunately, it only connects to a named pipe on Windows...