brightball

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.

First 6 of 6 Posts Switch mode

slashdotdash

slashdotdash

Here are a few trading-related Elixir projects on GitHub you might find useful (I haven’t tried any of them).

  • elixir_trading_platform - A realtime trading platform powered by phoenix and websockets.
  • lgthorn - Cryptocurrency trading bot.
  • tai - A trading toolkit built with Elixir that runs on the Erlang virtual machine.
  • talib - Technical Analysis Library written in Elixir.
dbelwood

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

brightball OP

Thanks! Prefer PM or here?

GenStage is complete overkill and only intended for personal tinkering sake.

dbelwood

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

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. :slight_smile:

It’d be interesting to hear if you do anything on this front. Best of luck!

brightball

brightball OP

Good idea! I wasn’t even thinking about LiveView but that makes good sense.

— All posts loaded —

Where Next?

Trending in Discussions Top

AstonJ
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
2977 91561 914
New
byu
@chrismccord : I just saw the Extract AGENTS.md from Phoenix.new into phx.new generator commit to the phoenix project. My initial shotgu...
New
arcanemachine
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
AstonJ
Just a general thread to post chat/news/info relating to AI/ML stuff that may be relevant for Nx now or in the future. Got anything to sh...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
juhalehtonen
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
alexslade
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog It says that Fly is going all-in on sprites, which is a worry ...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
bjorng
We want to introduce a new native datatype to Erlang: native records. Although replacing all tuple records with native records is not our...
New

We're in Beta

About us Mission Statement