Search results

  1. Axon

    The rich kids giving away their inheritances

    I can help them all with their burden; just send the money to me.
  2. Axon

    Price Action With Python?

    I may be a bit unorthodox and though I'm very familiar with it, I've never felt the need to use Pandas. The work flow is pretty straightforward so here's an example: The feeds I'm familiar with use either FIX or web sockets and I'll assume the latter since it's more common. Check the data...
  3. Axon

    TD Ameritrade Follows IBKR, Schwab, Introduces $0 Commissions for Online Stock, ETF and Options

    A lot of people use Robinhood thanks to the utter simplicity of the app. It's just tap tap tap done. The instant deposits and free options trading don't hurt either.
  4. Axon

    Price Action With Python?

    I've been using Python with the Matplotlib charting library to run a trading bot I've been refining over the last couple of years. Did quite well in crypto and I'm currently adapting it to work with equities and futures. So I guess the answer is yes provided you have an edge already that you can...
  5. Axon

    Trading options all day on my iPhone 11 pro max

    Not him but here's my Galaxy Tab s5e (10 inches or so) I use to trade all the time. Highly recommended.
  6. Axon

    Trading options all day on my iPhone 11 pro max

    Picked mine up off of Craigslist for 200 bucks. I'm sure people have their reasons but I can't imagine paying much more than that for a phone except for one of those new folding ones but we'll see.
  7. Axon

    Trading options all day on my iPhone 11 pro max

    Not much to look at but here's the TradingView app on an iPhone
  8. Axon

    Applications - What do you use?

    Python, Numpy, Scipy, Matplotlib, API from a dozen crypto exchanges, IEXCloud for the free "real time" stock data and some other stuff.
  9. Axon

    In praise of SQLite

    Another thumbs up for SQLite. I use it with Python and it is blazing fast with zero problems so far. In WAL mode, the issue of concurrent reads and writes is all but gone. I do a lot of stuff with Redis too and despite Redis being an "in memory" database, SQLite is still almost always faster...
  10. Axon

    Any nice, simple message queue/event dispatcher for Python?

    ZeroMQ is great and I use it extensively for PUB/SUB but, ironically, it's not technically a "queue". Whatever you publish with zmq is "essentially" gone if there aren't any active subscribers. This is the case within the context of other patterns as well, not just PUB/SUB. If you really need a...
Back
Top