Search results

  1. G

    SSD Endurance... FWIW

    What I do instead is encrypt (with gnu pgp) client side and backup those ' buckets' to the hoster. I'm using Google Drive and linux tool duplicity. Make sure you have that private key stored somewhere else than on your pc. If the private key is lost, the backup can not be decrypted.
  2. G

    IB API HOWTOs and Guidelines - For Beginners

    Below, I read something about timer based vs event driven based algo trading. In my opinion, the event driven algo is the way to go. Simply put, if nothing changes that may influence the algo, then why bother to re-evaluate what action to take? Of course, the algo should watch price changes but...
  3. G

    Just launched my own home-brewed automated trading system. AMAA!

    Ok, so what you're saying is that the ib api client does indeed see every single trade and dom change, but not exactly as it happens but instead at bursts interval? If that's the case, then this would be a lot better than what I was assuming. Extreme low latency trading is not something I'm...
  4. G

    Emotions - How do you deal with it?

    Indeed, failing to suppress emotions is not the problem (it may even be impossible), but letting those emotions have an effect on trading *is*. After a losing trade, I always look at the long term p&l where the losing trade is only a minor down-tick. That way, it's much easier to accept and let...
  5. G

    Just launched my own home-brewed automated trading system. AMAA!

    Also, from the IB api mailinglist, I've learned that IB is sort of aggregating data over a 'several' (100+?) milliseconds and sends that out. So multiple trades are packed together and returned as one trade. That's really ok, but if in between those separate trades a change in the dom happened...
  6. G

    Just launched my own home-brewed automated trading system. AMAA!

    Indeed same here, I've seen that happen and sometimes it would even disconnect from tws. So everything is catched ;-)
  7. G

    Just launched my own home-brewed automated trading system. AMAA!

    My system also uses market orders because if the algo decides to act now, it really must be *now*. So with enough volume in the DOM, a buy will most often be executed at ask and sell at bid. But with bigger orders or some other weird coincidence, the average fill price may be different from...
  8. G

    Best Back Testing Results

    But don't you think that comparing two results with different kind of risks is fair? Making 3% in fixed income or 3% with trading futures in my opinion is not the same. Also, another reason I'm comparing with a benchmark like the S&P500 is to see if it would be better to simply trade an...
  9. G

    Best Back Testing Results

    The way i back test is using the S&P 500 as a benchmark and try to outperform that in index points, not in USD. Backtesting and simulating in USD is not completely 'fair' in my opinion if the trading tool is some sort leveraged product (futures, options etc). In other words, benchmark and...
  10. G

    Just launched my own home-brewed automated trading system. AMAA!

    I did on a paper trading account, it all seems to work just fine. I may need to make it more fool-proof in case something goes wrong (lost connection, no accurate order execution reporting etc).
  11. G

    Just launched my own home-brewed automated trading system. AMAA!

    The ideal would be to be profitable in every simulated session (=recorded market data) or at least be 'significantly' profitable overall. Also, there should be enough different kinds of market sessions in the DB to assume/proof that it will be successful in all those situations. I have...
  12. G

    Just launched my own home-brewed automated trading system. AMAA!

    Just discovered this thread and had to contribute. I’ve have been working on building an ATS for some while now working with Java+Oracle against the IB API. So far, I did not have the nerve to let it run on its own as I’m still seeing possibilities for improvement. I’m storing each and...
  13. G

    Server location

    Not sure if I get your question right, but just use the commandline tool ping. I'm on Linux, but it's the same on many platforms.
  14. G

    Easy edges in the markets for retail participants?

    Agreed, and what I too consider to be a great advantage is: being a small trader. I am no more than the well known little speck on a fly's leg on an elephant's ass. That's a huge advantage. No one is watching my orders and I can get in and out of a position any time. So I'm just trying to swim...
  15. G

    How to trade around earnings?

    I've got the same rule. Since I don't trade individual stocks, I'm not so much concerned with earnings, but the same applies to Fed announcements (FOMC). Too often have I seen the volatility hit my stop and then run the anticipated way. So, I have this rule in place to close all short term...
  16. G

    Simplest/Cheapest Java API/Broker for automated trading?

    I'm on Interactive Brokers as well, and although the Java API sometimes shows some weird behavior, overall it just works fine and reliable. Make sure you sign up for the Yahoo email discussion group as well, lots of info there too.
  17. G

    Server location

    That's not a bad offer for anyone looking for this type of hosting. Although, the 1ms they say would be a bit unbelievable. If I ping my router that's only 5m/15ft away on a 1Gbit lan it takes 0.3ms already. But nonetheless, their offer could be worth considering if you really want to compete...
  18. G

    Getting out of trades too early

    Very good post! Something I do to make it easier to follow my trading rules is to look at my equity curve over time. Sometimes it ticks down a bit, but then recovers. As posted above, you have to feel comfortable with a loss and not get upset, but also not afraid to stay in a position if...
  19. G

    What was the ***last*** thing you had to master before becoming profitable?

    ... to make only one trade per day. Have the orders (open and stop close) put in, and not look back until the end of the session. Or put differently: not modify any previously made decisions during the session.
  20. G

    Server location

    My first post to Elitetrader, so here it goes ;-) I guess that if you're really in the HFT, than nothing is good enough, or just too expensive. But in algorithmic trading too, you may want the fastest execution after your algo decides to take action. I'm trading the S&P Futures E-mini from...
Back
Top