Fully automated futures trading

Discussion in 'Journals' started by globalarbtrader, Feb 11, 2015.

  1. traider

    traider

    #1541     Mar 8, 2018
  2. #1542     Mar 8, 2018
  3. traider

    traider

    Sorry sir, but your breakout blog post gave me the impression that you didn't really deal with breakout rules before. I was wrong haha.
    Also there is some intro to machine learning in the MAN AHL videos.
     
    #1543     Mar 8, 2018
  4. Well the big fat NDA I signed with Man means I can only talk about what they're doing once it becomes public domain, hence the confusion.

    GAT
     
    #1544     Mar 8, 2018
  5. isotope1

    isotope1

    For anyone who's interested, I have open sourced my trading system:

    Quick features:
    • Downloading and merging of data from Quandl & IB
    • Bootstrapping of rules/portfolio
    • Uses multiprocessing and vectorization where possible, so it's quick.
    • Integration with Interactive Brokers (managed accounts) for automated trading
    https://github.com/chrism2671/PyTrendFollow
     
    #1545     Mar 14, 2018
  6. Awesome. Thanks for the name check.

    GAT
     
    #1546     Mar 14, 2018
    isotope1 likes this.
  7. isotope1

    isotope1

    Couldn't have done it without you! :)
     
    #1547     Mar 14, 2018
  8. Do you run this automatically and unsupervised?
     
    #1548     Mar 14, 2018
  9. traider

    traider

    I got it running, it's full auto, uses market orders using IB's adaptive algo. Not sure what the adaptive algo does though...
     
    #1549     Mar 14, 2018
  10. isotope1

    isotope1

    I used to, but there are too many things that can go wrong with data feeds etc. Normally I:
    • Download the data with cron, as this takes a while (download.py).
    • Run validate.py and inspect the output, which shows the status of price data for each instrument and how old it is.
    • Run scheduler.py --now to execute trades.
     
    #1550     Mar 14, 2018
    djames and HobbyTrading like this.