Stepan Lusnikov
Stepan Lusnikov
If anyone still looking for that, I created an npm package to fetch candles from Tradingview [endenwer/tradingview-ws](https://github.com/endenwer/tradingview-ws/).
@siphiuel @martinklepsch Can I just save png to filesystem when creating `issue_comment` and store image hash in db. If that's ok I can start working on it.
Hey @andytudhope. Is there anyone who can review my pr?
@jeluard I think the best option here is to get rid of all config files and allow to use clojure to change config. So user just create `build.clj` with own...
I misunderstood the issue. It is more complex. Need to think on that.
The idea is to have only one store. Technically it is possible to combine data from multiple stores, but I would't do so. ``` typescript const sub1 = store1.regRootSub( 'sub1',...
Yes, you need to combine selectors(subs here). If you want, you can read more about this approach here https://day8.github.io/re-frame/subscriptions/ And the demo is running here https://svelte-restate-example.netlify.app/ You can look in...
I would do it like this ```typescript export const orderForm = appDB.regRootSub( 'orderForm', ($root) => $state[ORDER_FORM_STATE] ) export const getIbcTechnician = appDB.regSub( 'ibcTechnician', () => orderForm(), ($orderForm) => orderForm.ibcTechnician )...
yes, that is a mistake, it should be like this. ```typescript ($root) => $root[ORDER_FORM_STATE] ```
Thanks for the suggestion. I don't have time to work on this project, but PRs are welcome.