If you zoom in you can see MA lengths in braces. I purposely turned off the axis as they don't help much when you look somewhere in the middle of a map.
Oh now I see.
Bitcoincharts have some gaps in their data, especially in the beginning. They can be easily seen on their graphs. My algorithm just fills these gaps with last known closing price.
So do mine.
So the results are mostly different. What algorithm have you used?
Well, I made it the hard way
I have loaded all hourly "raw data" from bitcoincharts (there is a button under a candle graph) to excel, then wrote a VBA script imitating buy and sell.
I forgot to tell that I have included a 0,25% fee for each trade.
Now I am moving from excel to MT4 available at btc-e, but it doesn't contain historical data earlier than approx 1st of november 2013 that would be valid for backtesting it with MT4 expert advisor.
My algorythm acts when a new candle is opened, it checks if EMA1-EMA2 was > 0 on the previous candle and EMA1-EMA2 was < 0 on the cande before that or vice versa.
But my excel algorythm and MT4 expert advisor give similar results on timeframe from 1 november 2013 till now.
Right now I am working on feeding MT4 with historical data so I can backtest my expert advisor on all historical data and check if my excel algo is right or wrong.
I have loaded my 1 hour frame from excel to MT4, but I am getting this ugly graphs:
http://s11.postimg.org/ku7mhwuf3/123123_1.jpgwhere blue and red lines intersection is a buy/sell point
My guess is that MT4 needs not only 1H scale but all the smaller ones including 1M. Or maybe it needs all ticks, but I can't find aa way to load ticks into it.
I wonder what algorythm do you use to extract candels from that csv data file?