Search results

  1. 2

    Nassim Taleb: "Who got burried?"

    when he traded on the floor he was the big fish. (fish in the gambling sense :cool:)
  2. 2

    Longer term quant based trades

    here's a strategy. buy the dip of indexes. they don't go to 0
  3. 2

    Creating Algo for MORE Intraday Trades

    Everyone gives up within a month if not a week. to go from zero, learning a language ,to writing an automated trading system. maybe someone could give an o/u
  4. 2

    Creating Algo for MORE Intraday Trades

    You're a FT trader for 5 years. If that means you make money and value you're time just hire someone to write it.
  5. 2

    Future of sports betting: the marketplace

    agreed. europe has been doing this for a while. smarkets founders have roots in the options world
  6. 2

    Future of sports betting: the marketplace

    world sports exchange? I think there was a 60 minutes story about it a while ago
  7. 2

    Non-Display solution

    can you still get around it by using a VM
  8. 2

    Headset + Mic

    I have the hyperX and wear it 4hrs a day straight. It was the cheapest good headset i found but no wireless. The steelseries siberia looks good though
  9. 2

    Advice for young trader

    I remember one SIG incoming group had a college dropout and one guy who never went to college but this was before the whole electronic automation
  10. 2

    Independent Option trader

    You can do it in futures options (ags, eurodollars,treasuries) if you work with a couple other people who are still in the pits.
  11. 2

    Sample example on using ibPy to get Fundamentals data

    call reqFundamentalData() https://www.interactivebrokers.com/en/software/api/apiguide/java/reqfundamentaldata.htm results comeback in fundamentalData() https://www.interactivebrokers.com/en/software/api/apiguide/java/fundamentaldata.htm
  12. 2

    Good option platform?

    orc,wex,rival, optioncity
  13. 2

    Thinking about a career change looking for some advice.

    can you do this job remotely? then get 3 or 4 mind numbing jobs and you're at 500
  14. 2

    Statistical Outliers

    http://scikit-learn.org/stable/modules/outlier_detection.html http://machinelearningmastery.com/how-to-identify-outliers-in-your-data/
  15. 2

    Trading account statement - public access

    I doubt there is any CTA that day trades profitably. How can they cover costs? You can see returns at iasg.com
  16. 2

    Day/Swing Trading, FINRA, and Employment

    https://www.elitetrader.com/et/threads/how-would-a-programming-job-for-a-big-financial-firm-affect-day-trading.302487/
  17. 2

    Option/Futures SPAN margin calculations

    here's a wrapper around the CME margin calculation http://bit.ly/2cGlmjA
  18. 2

    Cuda questions

    Threading and cuda are apples and oranges. I use the python numba package from continuum. Basically all i need to do is write run on gpu; no cuda code required
  19. 2

    exercising an option

    something like exercise call when upcoming dividend is greater than same strike put exercise put when interest cost is greater than same strike call
  20. 2

    Is there a way to cancel every IB order automatically after 30 minutes?

    class KillEmAll(EWrapper): def __init__(self): self.connection = EClientSocket() def reqAllOpenOrders(self): self.connection.reqAllOpenOrders() def openOrder(self, orderId, contract, order, state)...
Back
Top