R or Python for someone with elementary CS skills?

Discussion in 'App Development' started by ehbeehefak, Jul 5, 2015.

  1. spacewiz

    spacewiz

    You need scalability if you need to execute a lot of trades (lets say at least 100's an hour), or monitor/trade many instruments in parallel. Python does not provide a good way to build multi-threaded or near-real-time "back-end" (non-web) applications. Also, because of the lack of strong typing - once a program/system reaches certain size & complexity - it becomes hard to maintain, especially when multiple people work on it. So, to summarize - Python does support scale as well as some other languages for application performance or the size (lets say something over 50-100k lines of code). However, the strengths are: great library support and flexibility of a scripting language that allows very fast turn around from development to production. It is a great language for learning programming and building prototypes fast.
     
    #11     Jul 7, 2015
    ehbeehefak likes this.
  2. 2rosy

    2rosy

    python can easily handle 100s an hour 100s a second is better with another language. You can use python in conjunction with a messaging layer to handle realtime events.
     
    #12     Jul 9, 2015
  3. I have to read a lot of books to understand this. But it is good to know that Python can handle medium freq intraday trading. Thanks for the input 2rosy.
     
    #13     Jul 10, 2015
  4. Who supports Python and how many iterations/versions has it gone thru ?
     
    #14     Jul 10, 2015
  5. spacewiz

    spacewiz

    #15     Jul 10, 2015
  6. spacewiz

    spacewiz

    2rosy, I think you are right, you could solve the problem with a messaging tool, however it complicates the infrastructure setup. Have you done something like this? What did you use for the messaging layer?
     
    #16     Jul 10, 2015
  7. 2rosy

    2rosy

    Everywhere i worked had a messaging layer from tibco rendezvous to rabbitmq, zeromq , solace,jms .you name it
     
    #17     Jul 10, 2015
  8. checkout the blog at quanstart.com they cover trading systems design in python and C++, elaborating in many key components (like the backtester) with detailed and well explained examples.
     
    #18     Jul 11, 2015
  9. #19     Jul 12, 2015
  10. spacewiz

    spacewiz

    Yes, I'm familiar with those tools, and used some of them in the past, I was just wondering if you built/used an actual real world trading system written with Python + a messaging middleware solution, and what were the reasons developers picked that combination instead of C++ or Java?
     
    #20     Jul 13, 2015