Search results

  1. 2

    The Best Trading Proverbs

    You don't have to make money to make money
  2. 2

    Where do you find these stats/graphs??

    what stuff are you looking for? you can get data from quandl and play import pandas as pd import Quandl df= Quandl.get('YAHOO/INDEX_GSPC') df['pct'] = df['Adjusted Close'].pct_change() df['dt'] = df.index df['cumdiff']= df['dt'].where(df['pct']< -.02) df.cumdiff =...
  3. 2

    Create a SQL database from csv files

    I have no clue about access but you could loop over each file and import the data into sqlite appending to a table http://stackoverflow.com/questions/14431646/how-to-write-pandas-dataframe-to-sqlite-with-index
  4. 2

    Introduction to ATS

    start here and incorporate trading logic
  5. 2

    Using CQG API for C#

    optioncity
  6. 2

    How to compile data

    they have excel good luck
  7. 2

    Using CQG API for C#

    yes I used c#. docs are fine. the new way to subscribe to instruments seems to fix a problem of subscribing but never getting data for an instrument.
  8. 2

    Using CQG API for C#

    I used it in the past. No additional cost that I am aware of. One gotcha is that there is a message limit of around 15/second
  9. 2

    Becoming a market maker

    you need to find a good market to make markets in. enough volume and liquidity, wide enough spread, access to orderflow, barriers to entry, clubby. So if I make markets in WTF options I want to be one of a few market makers, want the underlying to be very liquid, want it to be a call around...
  10. 2

    hedge/ spread ratios

    heres some spread ratios, pca loadings, etc. The formulas used you can get off wikipedia or google them
  11. 2

    Operating System Choice

    nasdaq runs linux http://lwn.net/Articles/411064/
  12. 2

    Yet Another Prop Firm Hiring

    I dont know what T3 is and dont know anything about prop shops that are unlike those in Chicago. If you have to put money up then I consider it a brokerage firm, not a trading firm.
  13. 2

    Yet Another Prop Firm Hiring

    I agree with maverick. I am in Chicago too, have worked for a few trading firms, and dont know any that require someone to put up money. The 800 resumes for 2 positions is a bit steep (what firms was that for?). You definitely need a degree the more technical and more prestigious the better but...
  14. 2

    Genetic Programming, C project

    good luck. these projects never get off the ground. I wouldn't be surprised if 100% of projects posted here never go beyond the post itself.
  15. 2

    Yet Another Prop Firm Hiring

    I was referring to the original poster. This Bulls On Wall Street firm seems to make money off a course. they are an education firm.
  16. 2

    IB API HOWTOs and Guidelines - For Beginners

    Here's a bare bones order status execution reporter you can run from commandline. You can run it, hit 'm' key and enter, place orders, see those orders in command prompt. maybe your problem was that you need to use reqAutoOpenOrders() and have clientID=0
  17. 2

    IB API HOWTOs and Guidelines - For Beginners

    This approach will send order status through the orderStatus() method whenever it changes. No registering callbacks just simple subclassing
  18. 2

    Yet Another Prop Firm Hiring

    there are many firms like that here. you get backed and get % of pnl. I dont know about training programs other than with options focused firms.
  19. 2

    Look for a good intro database book

    I dont think I have ever seen 1000s of positions on a single underlying but more than 20 yes. I dont think it would be viable as a commercial product; just useful to someone who has positions up/down a curve, strikes, etc
Back
Top