Search results

  1. spy

    How to send email to IRS and US treasury to complain about the 10% PTPs tax?

    The only reason you'd use those codes is if you wanted to highly automate your processing. For example, if you traded hundreds of transactions and/or wanted to write software that helped prepare your taxes year after year or for multiple accounts. So, if you have "zero knowledge of programming"...
  2. spy

    Do You Actually Enjoy Trading?

    Unless you're a masochist.
  3. spy

    How to send email to IRS and US treasury to complain about the 10% PTPs tax?

    As much as I like Python, that seems to be par on its course. The package installer for Python (pip) addresses this to some degree but there's no cure-all... c'est la vie. Don't even get me started about the transition from Python2 to Python3.
  4. spy

    "Order rejected: Credit spreads cannot equal or exceed the strike difference"

    We could ask the same thing of you precious snowflake.
  5. spy

    How to send email to IRS and US treasury to complain about the 10% PTPs tax?

    Yeah... I'm also a fan of both python and selenium. But, with due respect, what ticked me off about the code you posted was that it didn't "stand alone". That is, a user couldn't just copy and paste it and have it work without going to some significant extra effort. Of course this could be...
  6. spy

    Overnight gone?

    You were wrong :cool:
  7. spy

    How to send email to IRS and US treasury to complain about the 10% PTPs tax?

    Bringing selenium and python into the picture for this might be overkill. It can be done in a line or two of bash instead: xmllint --html --shell <(curl -s 'https://ibkr.info/node/4706') <<< \ 'cat //table[last()]/tbody/tr/td[1]/text()' | fgrep -ve ISIN -e ---- -e/
  8. spy

    "Order rejected: Credit spreads cannot equal or exceed the strike difference"

    Laughing at oneself is, apparently, a dying art.
  9. spy

    why this order was rejected?

    At least you'd get some cardio walking down to the corner store that sells the tickets. And I hear half your losses get donated to the public childcare system. I knew this guy who used to call them "suicide options"... I assume because you'd only buy them if you had nothing to live for; lol...
  10. spy

    why this order was rejected?

    better off playing mega-millions imho
  11. spy

    How to get email alerts when the VIX goes above a certain number.

    Interesting. I was actually about to caution that one problem with a notification getting tripped for something like the VIX is... that if it's toggling right around your limit (e.g. vix 19.999/20 every 30ms and your trigger is >=20) you could potentially send a huge number of email/sms...
  12. spy

    How to get email alerts when the VIX goes above a certain number.

    And here I was about to suggest writing something "special"... won't deny I like to do things the hard way sometimes: #!/usr/bin/env python3 # https://ib-insync.readthedocs.io/recipes.html#async-streaming-ticks import asyncio, sys, os import ib_insync as ibi class App: async def...
  13. spy

    Going full time

    Lol, yeah... it's easy to do either. The true difficulty happens when it comes time to somehow combine the acts and show a consistent profit. I find it's easiest to buy them as a sort of tribute and gratitude for the privilege of selling them. That way, hopefully, you never actually NEED to buy...
  14. spy

    Going full time

    Congrats. Btw, I was making a snide joke when I said: Don't worry... with a little luck you'll get the punchline in a few years.
  15. spy

    Problem with the Lemorele USB-C Hub

    These kinds of issues creep up all the time. You need to get used to "bisecting" the path/pipeline of components from least expensive to most expensive in order to isolate what's at fault (i.e. failing). In your particular situation, as an example, I'd follow this type of procedure: Plug the...
  16. spy

    Taking market winnings and going to Oahu - any recommendations places to eat/stuff to do?

    Big mistake... you should've planned on going to Maui and staying at the White Lotus. "Whenever I stay at a White Lotus, I always have a memorable time. Always."
  17. spy

    Data and IB: Another unreliability report

    Agree completely, IB has its share of problems but so do others. That's why I only quoted the relevant part in my previous reply. When you first notice a problem though... you usually place some extra blame on the immediate cause. I think it's just human nature.
  18. spy

    How to check the health of eMMC Storage ?

    There are lots of "Self-Monitoring, Analysis and Reporting Technology" disk tools. Such tests are good but I wouldn't consider the results to be absolute gospel; sometimes they can give false positives/negatives. So, if you really value your data... make sure it's backed up onto some kind of...
Back
Top