- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
public static float xTicksBelow(int numTicks, float price){
float pricePoint = price;
DecimalFormat threeDigit = new DecimalFormat("0.000");
for(int i = 0; i < numTicks; i++){
if(pricePoint > 0.001f && pricePoint < 0.1f && pricePoint > 0){
pricePoint -= 0.001;
}else if(pricePoint > 0.1f && pricePoint < 2.0f){
pricePoint -= 0.005;
}else if(pricePoint > 2.0f){
pricePoint -= 0.01f;
}else if(pricePoint == 0.1f){
pricePoint -= 0.001;
}else if(pricePoint == 2.0f){
pricePoint -= 0.005f;
}else if(pricePoint == 0.001f){
pricePoint = 0.001f;
}
String prices = threeDigit.format(pricePoint);
pricePoint = Float.parseFloat(prices);
}
//JOptionPane.showMessageDialog(null, "Pricepoint is now " + pricePoint);
return pricePoint;
}