Search results

  1. J

    starting mastermind group for those building system (python)

    tradingview is purely for the charts. Everything else youl have to do yourself. There is no sane way to pull out the TWS GUI parts from their Java app, its all obfuscated, and java by its nature is naturally obfuscated from simply writing in java ;). So obfuscation ^ 2. That complex view...
  2. J

    starting mastermind group for those building system (python)

    Checkout tradingview.com the HTML5 Api, you need to register with them and sign a NDA or something to say your not gonna sell anything you make using their charts. Then connecting IQFeed/TWS to those charts would be the next step. So now you have streaming realtime charts. The tradingview...
  3. J

    starting mastermind group for those building system (python)

    To just add extra functionality on top of a brokerage like TWS and a feed like esignal is definetly down the same alley, the same code (api integration, indicators, time series, etc). The only difference is youl add some code to trade automatically. In your case instead of adding the...
  4. J

    starting mastermind group for those building system (python)

    I integrated TWS/IBGateway with python and started on IQFeed integration which is esignal or similar. http://www.elitetrader.com/et/index.php?threads/ibrokers-from-0-to-algorithmic-trading.298125/#post-4251155 My problem was I did not have any good algorithm to trade using. So the system would...
  5. J

    Cheap streaming Futures data?

    Ditto
  6. J

    [IBrokers] From 0 to Algorithmic Trading

    K the ninja trader backtester is terrible terrible terrible. So inaccurate. It appears I will have to buy the 15$ per symbol per year full tick data and replay the market on my own. NinjaTrader does not even do a market replay.
  7. J

    [IBrokers] From 0 to Algorithmic Trading

    Huge losses today ($5000+) due to the market going down. The strategy cannot exit in the program as I have not coded it right yet. Going to try to get some ninjatrader stats posted with backtests as that is more reliable. So far I have this backtest: But no account for slippage as the NT...
  8. J

    [IBrokers] From 0 to Algorithmic Trading

    I think the demo account maybe realistic enough, I am not sure. But I have seen cases on the demo account where the price hits my Ask for a SELL and the order in the demo does not get filled. Meaning the demo account on IB has some kind of respect for the queue.
  9. J

    [IBrokers] From 0 to Algorithmic Trading

    Demo account up $900 PNL. Made 43 trades. Any tips in IB how to set a cutoff for PNL for the day would be appreciated. I rather have it reset at 8pm.
  10. J

    Knowing order in order queue / updating order sends it to back of queue?

    I am not too familiar on colo prices but I often rent dedicated servers, I currently pay on west coast under $100 for 80gb of ram 12 phys cores 12 vcore and 4tb of harddrive space with 30TB a month (100mbps unmetered) on a 1gbps nic. I know colos with electricty for 1U end up like $80-200~...
  11. J

    [IBrokers] From 0 to Algorithmic Trading

    So I am starting to slowly trade with paper. Will hopefully have some results soon.
  12. J

    Knowing order in order queue / updating order sends it to back of queue?

    I mean massive infrastructure is not scary, in fact that shows that the HFT firms are slow. A massive infrastructure often shows a lack of programming knowledge, a powerful infrastructure is a small. Perhaps only 1 computer with a FPGA nic or DPPK/similar to pull packet frames and process them...
  13. J

    Knowing order in order queue / updating order sends it to back of queue?

    The actual competition whether it would affect profits is debatable. But if the exchange sends you back a timestamp of when (on the exchanges time) your order was entered into the books, and each tick from the exchange has a timestamp of when the trade executed. its quite simple to determine...
  14. J

    Knowing order in order queue / updating order sends it to back of queue?

    Sorry these are emini futures. I am on the IB paper account playing around with some automated trading. I see thank you. I partially understand some of it. The gist is that someone exercised options. Yes exactly this. I have a YM sell order at 17989, I get the next bar and the previous bars...
  15. J

    Knowing order in order queue / updating order sends it to back of queue?

    I have a question about the order queue. Say the bid has 10 contracts (from 10 different traders/orders) and I enter a buy order for 1 contract at the bid. I would be 11th in line now correct? So the bid clears 5 and there is 6 on the bid, 5 more contracts join the bid. 11 Total, I am 6th...
  16. J

    Trading with automation (with IB)

    Yea the first post would be better if it made clear that this is a demo account trading, perhaps in bold. This thread is a lot less interesting now. Simply because from the perspective of a programmer designing software that can excel at a simulation and designing software that can win in the...
  17. J

    Trading with automation (with IB)

    Interesting. That's insane how you can go from 410k PNL to -60k, if I was not risk averse I would be in the ER room right now. Do you think the IB platform/API could partially be responsible for this?
  18. J

    Simple trend determination? For Emini Future

    Wow that is actually great and I think works better than 10>5>1. I was going to calculate the rate of change between then 10 5 1 SMA and add it. If the rate is -1 to 1 then we are sideways. But if 21 MA > 7 MA by at least x% we are in down, else up, else sideways.
  19. J

    Trading with automation (with IB)

    What timeframe is the PNL calculated on? I thought its daily like how IB gives you by default, but I don't think that' right?
  20. J

    Cheap streaming Futures data?

    Thanks that looks interesting. Does Rithmic have things like streaming interval? Say I want every 1 minute bar streamed to me, I dont want to reassemble all the ticks into my own bars.
Back
Top