Search results

  1. 2

    EOD data provider for Linux machine?

    CSI provides the data through ftp. so at the command line type "ftp get" :D
  2. 2

    Billionaire Boys Club (1987)

    breakfast club
  3. 2

    Where is Ben Lichtenstein?

    What was he squawking? The driving range that was put up a while ago
  4. 2

    Najarian brothers' trading records

    Yes, market making back then the quotes were wide. If you're not market making, then scalping, spreading, arbing. Anything but "trading".
  5. 2

    Protecting unvested AMZN stock gains

    buy puts and sell calls. called a collar or synthetic short
  6. 2

    Python or C++

    process a realtime datafeed
  7. 2

    Python or C++

    http://j.mp/audgists http://bit.ly/17h05Rm http://bit.ly/TFFL7V http://bit.ly/1eJFJV6
  8. 2

    Aren't we always paying the spread?

    depends what exchange and instrument you're on
  9. 2

    Monte Carlo simulation Forex

    from random import randint account=30000 accum=[] for i in range(30): risk = .02 * account r = randint(1,100) if r<=63: account += risk * 1.11 else: account -= risk * 1.0076 accum.append(account)
  10. 2

    how to get opening data for forex

    you probably want to standardize on one of the fixing times https://www.bloomberg.com/markets/currencies/fx-fixings
  11. 2

    Calendar spreads on TWS API?

    create a BAG instrument def createBag( conidOne, conidTwo, symbol, exchange='NYMEX'): leg1 = ComboLeg() leg2 = ComboLeg() addAllLegs = [] print "conid in bag %s" % (conidOne) leg1.m_conId = conidOne leg1.m_ratio = 1 leg1.m_action =...
  12. 2

    Best Broker for institutional high frequency trading

    actually goldman execution and clearing
  13. 2

    Best Broker for institutional high frequency trading

    wedbush gsec newedge
  14. 2

    Java FIX tool for position (re)entry

    i have one for ib if thats what you use
  15. 2

    Rogue Trading: When the mistake doesn't come cheap.

    there was a trader who put on a risky trade and made almost 7 figures. was fired for breaching risk limits
  16. 2

    Project/idea/task management software?

    open a free bitbucket repo. set it to private. create an issue tracker in it
  17. 2

    Unable to install Pandas on Mac, help!

    change permissions
  18. 2

    Becoming a SPX pit trader

    edge is order flow. you're the mm and in front of any queue. however, now a days you need a person in spx, in sp500 futures options, and quoting spy and anything else similar
  19. 2

    Python or C++

    apples or oranges
  20. 2

    Why is this UDP unicast not being received by the client?

    message protocol used by cme https://github.com/real-logic/simple-binary-encoding
Back
Top