fix talib bug on bollinger bands and other indicators when working on small assets, rise talib prescision and add test associated

This commit is contained in:
Axel Cherubin
2018-08-05 16:08:49 -04:00
parent a2730cd86e
commit 0b825e96aa
3 changed files with 22 additions and 2 deletions

View File

@@ -1,7 +1,11 @@
if [ ! -f "ta-lib/CHANGELOG.TXT" ]; then
tar zxvf ta-lib-0.4.0-src.tar.gz
cd ta-lib && ./configure && make && sudo make install && cd ..
cd ta-lib && \
sed -i "s|0.00000001|0.000000000000000001 |g" src/ta_func/ta_utility.h && \
./configure && make && sudo make install && cd ..
else
echo "TA-lib already installed, skipping download and build."
cd ta-lib && sudo make install && cd ..
cd ta-lib && \
sed -i "s|0.00000001|0.000000000000000001 |g" src/ta_func/ta_utility.h && \
sudo make install && cd ..
fi