
in.kncsolutions.dhelm.candlepattern.multiline.BullishAbandonedBaby Maven / Gradle / Ivy
/**
*Copyright 2018 Knc Solutions Private Limited
*Licensed under the Apache License, Version 2.0 (the "License");
*you may not use this file except in compliance with the License.
*You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*Unless required by applicable law or agreed to in writing, software
*distributed under the License is distributed on an "AS IS" BASIS,
*WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*See the License for the specific language governing permissions and
*limitations under the License.
*/
package in.kncsolutions.dhelm.candlepattern.multiline;
import java.util.*;
import in.kncsolutions.dhelm.candlebasic.*;
import in.kncsolutions.dhelm.exceptions.DataException;
import in.kncsolutions.dhelm.mathcal.Mathfns;
/**
*According to literature the bullish abandoned baby pattern is a three line pattern composed of a
*long candle with black body followed by a doji candle with at least one shadow, followed by a long white candle, where the high of the doji candle is below the low of the
*previous black candle and the following white candle's low is greater than the high of the doji candle. The prior trend should be down trend.
*/
public class BullishAbandonedBaby{
private List Open=new ArrayList();
private List High=new ArrayList();
private List Low=new ArrayList();
private List Close=new ArrayList();
private int RefBody;
private int RefLength;
private int RefTrend;;
private double Percentage;
private double []trendPrior={0,0};
private boolean isBullishAbandonedBaby;
/**
*@param open : List of opening prices where first element is the latest data.
*@param high : List of high prices where first element is the latest data.
*@param low : List of low prices where first element is the latest data.
*@param close : List of closing prices where first element is the latest data.
*@param numBody : Number of previous periods w.r.t which it is to be found that if the latest candle's body is greater than the average body length of those past consecutive periods or not.
*@param numLen : Number of previous periods w.r.t which it is to be found that if the latest candle is long or short.
*@param numTrend : Number of previous periods w.r.t which the previous trend have to be approximated.
*@param percentage : The percentage by which if the latest candle is longer than the previous candles, it will be treated as a long candle, otherwise short.
*@throws DataException if sufficient data not available.
*/
public BullishAbandonedBaby(List open,List high,List low,List close,int numBody,int numLen,int numTrend,double percentage)throws DataException{
Open.addAll(open);
High.addAll(high);
Low.addAll(low);
Close.addAll(close);
RefBody=numBody;
RefLength=numLen;
RefTrend=numTrend;
Percentage=percentage;
isBullishAbandonedBaby=false;
if(Open.size()<((RefTrend+3>RefLength) ? RefTrend+3 : RefLength)
|| (Open.size()!=Close.size() || Open.size()!=High.size() || Open.size()!=Low.size() )){
throw new DataException();
}
else{
BullishAbandonedBaby();
}
}
/*
*
*/
private void BullishAbandonedBaby()throws DataException{
if((Close.get(0)>Open.get(0)) && validBasicCandle(1)){
if((Close.get(1)==Open.get(1)) && Low.get(1)!=High.get(1)){
if((Close.get(2)High.get(1) && High.get(1)0)
isBullishAbandonedBaby=true;
}
}
}
}
}
/*
*
*/
private boolean validBasicCandle(int i)throws DataException{
if(i==1 && (new WhiteCandle(Open,High,Low,Close,RefBody,RefLength,Percentage)).isWhiteCandle()
|| (new LongWhiteCandle(Open,High,Low,Close,RefBody,RefLength,Percentage)).isLongWhiteCandle()
|| (new WhiteMarubozu(Open,High,Low,Close)).isLongWhiteMarubozu(RefLength,Percentage)
|| (new ClosingWhiteMarubozu(Open,High,Low,Close)).isLongClosingWhiteMarubozu(RefLength,Percentage)
|| (new OpeningWhiteMarubozu(Open,High,Low,Close)).isLongOpeningWhiteMarubozu(RefLength,Percentage)){
return true;
}
else if(i==3 && (new BlackCandle(Open.subList(2,Open.size()),High.subList(2,High.size()),Low.subList(2,Low.size()),Close.subList(2,Close.size()),RefBody,RefLength,Percentage)).isBlackCandle()
|| (new LongBlackCandle(Open.subList(2,Open.size()),High.subList(2,High.size()),Low.subList(2,Low.size()),Close.subList(2,Close.size()),RefBody,RefLength,Percentage)).isLongBlackCandle()
|| (new BlackMarubozu(Open.subList(2,Open.size()),High.subList(2,High.size()),Low.subList(2,Low.size()),Close.subList(2,Close.size()))).isLongBlackMarubozu(RefLength,Percentage)
|| (new ClosingBlackMarubozu(Open.subList(2,Open.size()),High.subList(2,High.size()),Low.subList(2,Low.size()),Close.subList(2,Close.size()))).isLongClosingBlackMarubozu(RefLength,Percentage)
|| (new OpeningBlackMarubozu(Open.subList(2,Open.size()),High.subList(2,High.size()),Low.subList(2,Low.size()),Close.subList(2,Close.size()))).isLongOpeningBlackMarubozu(RefLength,Percentage)){
return true;
}
return false;
}
/**
*@return Returns true if the bullish abandoned baby pattern is generated.
*/
public boolean isBullishAbandonedBaby(){
return isBullishAbandonedBaby;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy