brightball
Any experience with Investment APIs using Elixir?
I’m considering experimenting with some long term personal investment strategy by coding it. I have a hard time approaching investments from a manual research standpoint when I approach everything else from a data + formula standpoint, so I’m looking at the Ally Invest API to try to craft something.
Initially (first year or so) I’m not planning on actually executing any trades, just gathering information and letting it simulate actions to see how it performs.
Since there’s such a variety of experience on this board, I’m wondering if anybody else has done something similar and if there were any suggestions. Just for my own personal Elixir enjoyment reasons, I’m thinking of using GenStage to ingest and consume the investment data, compressing it into Postgres using the CStore extension and then alerting me with recommendations with the formula has something it thinks I should act on.
Any feedback or gotchas would be appreciated.
Trending in Discussions
Other Trending Topics
Chat & Discussions>Discussions
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 6 of 6 Posts
slashdotdash
Here are a few trading-related Elixir projects on GitHub you might find useful (I haven’t tried any of them).
dbelwood
I’m currently writing an automated trading tool against alpaca.markets. Unless you’re doing crypto, you probably won’t need the bells and whistles of GenStage. I’m wrapping an API endpoint in an HTTPoison client and a WebSocket client in WebSockex and feeding through to GenServer procs. Biggest hurdle ATM the moment is designing a resilient system when the system of record is external, i.e. the website. I.e., re-syncing on failure. Happy to share any hard lessons I’ve learned or gotchas in more detail.
brightball
Thanks! Prefer PM or here?
GenStage is complete overkill and only intended for personal tinkering sake.
dbelwood
Either’s fine with me.
Re: GenStage, totally understand. I had the same inclination coming from data pipelines and Kafka. I’m having to re-wire my brain to adopt the let it fail and pick up the pieces mentality.
Currently on my third revision of the codeline, but I feel like I’m getting closer to the best Elixir/OTP way to do it. I.e. more, smaller procs and using bounded contexts and pure functions
elcritch
I’ve thought of doing similar myself (and/or do some side projects for pricing predictions). For work we’re using rocksdb for IoT timeseries currently and syncing between devices and it’s pretty straightforward to get a basic streaming web hooks going. You might be well served with a KV store as well using ranges and streams, depending on your analysis type.
However, the biggest thing making me want to play around with a financial pricing side project is Phoenix LiveView! Building a live dashboard for this kind of project is normally a pain as you have to build a rest or web sockets api, then create some SPA in Javascript. But for small scale usage, IMHO, LiveView makes projects like this orders of magnitudes easier. Granted, graphs need work, but I wrote myself a simple one.
It’d be interesting to hear if you do anything on this front. Best of luck!
brightball
Good idea! I wasn’t even thinking about LiveView but that makes good sense.