pcawthron
pcawthron
The pattern tests are very simple in the source I have installed: ``` if( ( TA_CANDLECOLOR(i) == 1 && TA_CANDLECOLOR(i-1) == -1 && // white engulfs black inClose[i] > inOpen[i-1]...
If you look at the source code for CDL3BLACKCROWS you see its definition: ``` /* Proceed with the calculation for the requested range. * Must have: * - three consecutive...
CDLHAMMER, like all TA-Lib candle functions, needs prior data - usually a default of 10 previous candles - to determine whether a candle's real body and shadows are long, very...
If you look at the comments in ta_CDLCLOSINGMARUBOZU.c you see: ``` /* Proceed with the calculation for the requested range. * Must have: * - long white (black) real body...
There's no problem with the library or the wrapper. ``` from matplotlib.finance import candlestick2_ohlc import matplotlib.pyplot as plt import datetime as datetime import numpy as np import talib quotes =...