Search results

  1. 2

    College Is Not An Option

    Programming. Zero startup cost and everything is free
  2. 2

    Is the Bloomberg Terminal UI source code available anywhere?

    not bloomberg but try https://www.highcharts.com/demo/dark-unica https://openfin.co/
  3. 2

    Ubuntu Linux or Windows 10?

    for programming purposes I think linux (without a window manager) is a lot easier. If you're planning on using it as a desktop then ms windows hands down
  4. 2

    Good work, bad work, no work

    Link?
  5. 2

    Good work, bad work, no work

    do you have a git or bitbucket repo?
  6. 2

    Does anyone know how to run this KIC/LPPL?

    there is nothing to run. its a library. gradle build or gradle jar. then use it in your application
  7. 2

    Time series DB?

    issue with hdf5 was size, threading, corrupted files. the team moved from hdf5 to kdb. as someone mentioned columnar database vs row; find a free or cheap column db and just load into it. forget all these individual files
  8. 2

    Time series DB?

    people tend to go from hdf5 to bcolz (if not kdb). is your data ticks/events or is it already normalized somehow? if its events, might want to look at queues(ie. kafka) for base storage then something else when analyzing.
  9. 2

    Time series DB?

    given your requirement bcolz works. I used it previously due to memory limits with pandas.
  10. 2

    Covered call alternatives?

    sell puts
  11. 2

    Insider trading hurts only HFT

    take another guess
  12. 2

    The Flynn crash

    buy 'em
  13. 2

    Any experience hiring a programmer? Where should I look?

    regrets? for those who want things programmed you should ask on a mailing list or stackoverflow how to do this or that. I wouldn't be surprised that you could get everything needed. In your eyes the program is complex but more than likely it's trivial. The cost is that people cannot explain what...
  14. 2

    What is the Best Way to Lose 20 pounds and keep it off...

    What do you eat in a day? Cut it in half
  15. 2

    Option arbitrage question

    the put is less than intrinsic value
  16. 2

    Quick pandas question

    import xarray as xr import pandas as pd df=pd.read_csv('http://www.deltaneutral.com/files/Sample_SPX_20151001_to_20151030.csv') sdf=df[ (df.type=='call') & (df.expiration=='10/16/2015') & (df.quotedate == '10/01/2015') &(df.underlying=='SPX')] sxdf=xr.Dataset.from_dataframe(sdf)...
  17. 2

    Quick pandas question

    this will get the type and exp optionsDF[ (optionsDF.type == 'CALL') & (optionsDF.EXP == '20170907') ] closest delta you might need to use interp or take a look at http://xarray.pydata.org/en/stable/ it has nearest functions and N-dimensional functionality that would probably work well with options
  18. 2

    Interviews advice

    wont get past the first guard
  19. 2

    Winton provides market for those who want to wager on the weather

    Been available for almost 20years http://www.cmegroup.com/trading/weather/?redirect=/weather
  20. 2

    Programmer's Catch 22

    disagree. work smarter not harder.
Back
Top