Hi,
I'm interested in to see the code of the function "cdlHammer".
/**
* Calculates the Hammer indicator for a bar specified with the <code>shift</code> parameter.
*
* @param instrument instrument of the bar
* @param period period of the bar
* @param side Bid or Ask side of the bar
* @param shift number of candles back in time staring from current bar. 0 - current bar (currently generated from ticks),
* 1 - previous bar (last formed bar), 2 - current bar minus 2 bars and so on
* @return value for the specified bar
* @throws JFException when parameters are not valid
* @see <a href =
https://www.dukascopy.com/wiki/#Indicator_calculation>Indicator calculation</a>
*/
public int cdlHammer(Instrument instrument, Period period, OfferSide side, int shift) throws JFException;
Is possible to see the java class thats contains the implementation of the function?
I'm not able to forund the class from Eclipse.
Thanks!