Python or C++

Discussion in 'App Development' started by yabz, Jun 5, 2017.

  1. You are probably a coder though.
     
    #51     Jul 20, 2017
    apollochung likes this.
  2. Sprout

    Sprout

    Curious is any here are on github and coding open source projects in python? My algo's are in Excel + VBA are have recently stopped working due to Yahoo's recent change. The first translation of app logic would be around data-scraping or connecting to free data, extendable to paid data at a future point.
    The link on those series of python vids look good, prolly work through them in the next couple of months.
    Also, is there any awesome python learning blogs specifically focused on finviz?
     
    #52     Jul 20, 2017
  3. Macca1

    Macca1

    I have noticed that when ever i'm investigating mathematical techniques( I seem to be dealing with alot of tasks based around skewed distributions, data normalization, hierarchical regressions). All the techniques i'm looking at seem to be most popular within the statistical community, and packages/ examples are written in R, not Python. So using R becomes more of an out of the box solution/ easier to implement.
     
    #54     Jul 20, 2017
    Howard likes this.
  4. I got the computer science degree from the school, and now I work in proprietary trading department in the securities company in Asia.
    I am responsible for futures trading. :)
     
    #55     Jul 20, 2017
  5. I don't use Python. I use java for my automated trading system. The calculations involved are not very complex nor demanding so I don't need to use a specific language such as R.
     
    #56     Jul 21, 2017
    lovethetrade, Howard and apollochung like this.
  6. 2rosy

    2rosy

    #57     Jul 21, 2017
    helgen_1, Sprout and Howard like this.
  7. bln

    bln

    Choose the right language for the job. Often language choice is determined by specific packages one need to fulfil the task. Sometimes it is Python, other times it is R or something else. Each language has it's strong points.

    As a general language I have switched to Go. I need good support for gRPC as my new testing environment is based on a microservices architecture. My runtime environment is Kubernetes on top of Docker.
     
    #58     Jul 28, 2017
    fan27 likes this.
  8. yabz

    yabz

    To print 'Hello world' in Go you have to write:

    import "fmt"

    func main() {
    fmt.Println("Hello world")
    }

    In Python:
    print 'Hello world'

    I would need a good reason to switch to Go as a general language....
     
    #59     Jul 29, 2017
    lovethetrade and FreakofNature like this.
  9. 2rosy

    2rosy

    process a realtime datafeed
     
    #60     Jul 29, 2017