Thanks for your reward. That's nice.
If you want some work...
Have a look at this thread
https://bitcointalk.org/index.php?topic=202808.0it deals with zipline a python pandas framework for backtesting
strategy.
If you know Python and Pandas
it will be a good think to transform Time-OHLCV data to
Time Price data (pseudo tick)
A first basic idea could be to transform to something like
t0 OPEN_dt0
t0+timeframe/4 LOW_dt0
t0+2*timeframe/4 HIGH_dt0
t0+3*timeframe/4 CLOSE_dt0
t1 OPEN_dt1
t1+timeframe/4LOW_dt1
t1+2*timeframe/4 HIGH_dt1
t1+3*timeframe/4 CLOSE_dt1
...
I 'd prefer a vectorized code (no ugly for loop) as my goal will be to feed ziplinewith M30 or H1 data
(it can be a very long if we also want to process M1 timeframe data)
A second step could be to be able to transform OHLCV data to "pseudo tick" data
(control points) using this method
http://www.mql5.com/en/articles/75you could begin with only 3-5-3 pattern
code must be open source
Other work to do... but that's harder...
integrate zipline with goxtool
in order to be able to test a strategy
and have this same strategy be applied to real market.