Search results

  1. C

    Is it possible to have a basket of limit orders all-or-none?

    IB has this https://www.interactivebrokers.com/en/?f=%2Fen%2Ftrading%2Forders%2Fspread.php But in general, this is a hairy problem, I have a lot of code devoted to execution on spreads.
  2. C

    'Watching The Market' vs. Machine Learning.

    Yep, still grinding away. I sent you an email ages ago and you never replied! :(
  3. C

    'Watching The Market' vs. Machine Learning.

    So, to restate what you are saying in your quote, he looks at the variability of results on the out of sample data, concerning different parameterizations on a single model?
  4. C

    'Watching The Market' vs. Machine Learning.

    I suspect that this is correct. The ability to 'frame' the problem in the correct way is the key. Feeding the last 5 daily bars of SPY into a neural network is probably just as useless as a beginner trader taking watching the last 5 daily bars of SPY.
  5. C

    'Watching The Market' vs. Machine Learning.

    Here is a question I have been considering and I can't really think of a good answer...Many experienced traders on this site have recommended 'Watching The Market' in order to pick up repeating patterns which could form the basis of trading systems, the human mind is designed to pick up...
  6. C

    Computational Investing 1 --- Georgia Tech

    It doesn't look like anything you could not pick up off the internet if you were suitably motivated...CAPM & Bollinger Bands?
  7. C

    Impactopia

    Anybody know what's going on with this site? They seem to have cut back the services on the site, there is no longer a ranking of the top and bottom correlations. Is there anything similar to the original site on the net?
  8. C

    The best traders in ET

    It's not that hard to work out who the cool kids are, but it's not going to help.
  9. C

    Do you run your self-made trading system with Linux or Windows?

    It really does not matter, either is good.
  10. C

    When People Ask "What do you do for a living" What say you?

    This subject has come up before, I remember one respondent memorably described himself as a 'financial rapist'.
  11. C

    I never cease to be amazed by Ubuntu

    Another thing to look at when in CCleaner is, what is auto starting when you log into Windows, you'll be surprised at the amount of crap that gets auto-started.
  12. C

    I never cease to be amazed by Ubuntu

    Have you tried registry/disk cleaners like CCleaner? Do you defrag your drive? Do you have millions of unused programs installed? Ubuntu builds up system detritus over time, just like Windows.
  13. C

    Java - Storing data in memory for post-runtime access

    I use Rcpp to load the binary data into R. This seems to be a fairly popular solution.
  14. C

    Java - Storing data in memory for post-runtime access

    For what it's worth, myself, and all the people I know who do this sort of thing all implement some version of the flat binary file idea.
  15. C

    I never cease to be amazed by Ubuntu

    I can understand where you're coming from here, sometimes the simplest things are such a massive PITA, it's a shame, because there are a lot of cool aspects to the platform. But a couple of hundred bucks for a Windows licence every couple of years is no biggie, then you can spend more time...
  16. C

    Writing Robust Trading Code

    In my experience, the best way to manage this stuff is by using the finite state machine pattern. FIX order cycles, TCP connection states, IQFeed login sequences can all be coded as FSMs. That way, if anything unexpected happens, you'll know real quick if you've coded defensively. Also +1 to the...
  17. C

    Learning How to Really Program/Code

    If your going to go the Python route, check out http://pytools.codeplex.com/
  18. C

    ex Goldman Sachs Trader Tells Truth about Trading

    I would not bother grinding through 'Millionaire Trader', it's rubbish. He makes far more sense in these videos, although it's nothing new. Bottom line, if he was killing it trading, why bother with all this other crap?
  19. C

    Basic algorithm of ATS ?

    1. Look at zeromq or asio. 2. Nope, because that would be crazy slow. 3. ??? To echo what rosy2 said, I would just stick to single threaded callbacks until you have some idea of what you're doing. Speed sensitive stuff can be broken into separate threads later.
  20. C

    results: backtesting vs market replay vs live

    +1, this is the only way to get complete control over your testing. In back testing you need to obsess over every detail and use tick data, otherwise you're just fooling yourself.
Back
Top