Rev 761 | Rev 767 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 761 | Rev 764 | ||
|---|---|---|---|
| Line 109... | Line 109... | ||
| 109 | BigDecimal abertura = BigDecimal.valueOf(aberturaCell.getNumericCellValue()); |
109 | BigDecimal abertura = BigDecimal.valueOf(aberturaCell.getNumericCellValue()); |
| 110 | BigDecimal topo = BigDecimal.valueOf(maximaCell.getNumericCellValue()); |
110 | BigDecimal topo = BigDecimal.valueOf(maximaCell.getNumericCellValue()); |
| 111 | BigDecimal fundo = BigDecimal.valueOf(minimaCell.getNumericCellValue()); |
111 | BigDecimal fundo = BigDecimal.valueOf(minimaCell.getNumericCellValue()); |
| 112 | BigDecimal fechamento = BigDecimal.valueOf(fechamentoCell.getNumericCellValue()); |
112 | BigDecimal fechamento = BigDecimal.valueOf(fechamentoCell.getNumericCellValue()); |
| 113 | 113 | ||
| 114 | Candle candle = new Candle(ativoDescricao, time, abertura, topo, fundo, fechamento, TipoPeriodoCandle.M1.getValor()); |
- | |
| - | 114 | Candle candle = new Candle(null, ativoDescricao, time, abertura, topo, fundo, fechamento, TipoPeriodoCandle.M1.getValor()); |
|
| 115 | candles.add(candle); |
115 | candles.add(candle); |
| 116 | }
|
116 | }
|
| 117 | }
|
117 | }
|
| 118 | } catch (EncryptedDocumentException e) { |
118 | } catch (EncryptedDocumentException e) { |
| 119 | // TODO Auto-generated catch block
|
119 | // TODO Auto-generated catch block
|