New Update v1.0.0.45 5/30/2014
Added two exchanges into demo mode:
Cex.IO (Demo), Bitstamp.net (Demo)
1. Auto-update currency pairs for btc-e, cryptsy, bter.
2. Acceleration in calculating deltas, 7 day 3-4 times faster than before but it does not mean that you can simultaneously run 20 such bots without slight lag!
3. New functions for charting (candles, volume, MACD)
candles:
GetCandleOpen (AIdx) - get the opening price of candles
GetCandleClose (AIdx) - get the closing price of the candle
GetCandleHigh (AIdx) - to get the maximum price for candles
GetCandleLow (AIdx) - get the lowest price on candles
trading volume:
GetCandleVolume (AIdx) - to get the amount of candles
Added histogram indicator MACD
http://1bbot.com/uploads/posts/2014-05/1401524436_btc-usd.pnghttp://1bbot.com/uploads/posts/2014-05/1401524479_ltc-btc.pnghttp://1bbot.com/uploads/posts/2014-05/1401524503_ltc-usd.pngCan be used in conditions!
MACD histogram
GetMACDH (AIdx) - get the value of MACD on candles
where AIdx - ordinal index of candles.
numbering goes in the opposite direction - ie 0 - is the current (right-most) candle / v / histogram
ex. (GetMACDH(0)>-0.1)
If Current candle greater than -0.1 then buy.
5. Other minor improvements / fixes