Python code for buy/sell signals on static data?

Discussion in 'Automated Trading' started by Aston01, Oct 28, 2014.

  1. Aston01

    Aston01

    Looking for a way to test some Python code on a csv file of static symbol data. All I am trying to find is something that I can use to generate Buy/Sell signals that are charted. Any recommendations for a solution where you can plug in your data and get up and running relatively quickly?
     
  2. jamesmawm

    jamesmawm

    import pandas

    pandas.read_csv("your csv file here")

    lots of pandas functions available.