Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 778 | blopes | 1 | package br.com.kronus.app; |
| 2 | |||
| 3 | import java.io.IOException; |
||
| 4 | import java.time.LocalDateTime; |
||
| 5 | import java.util.ArrayList; |
||
| 6 | import java.util.List; |
||
| 7 | |||
| 8 | import com.itextpdf.text.pdf.languages.ArabicLigaturizer; |
||
| 9 | |||
| 10 | import br.com.kronus.core.Candle; |
||
| 11 | import br.com.kronus.core.SinalDeTrade; |
||
| 12 | import br.com.kronus.core.Timeframe; |
||
| 13 | import br.com.kronus.fibo.FibonacciService; |
||
| 14 | import br.com.kronus.strategy.EstrategiaGatilhoTipo3; |
||
| 15 | import br.com.kronus.strategy.Strategy; |
||
| 16 | import br.com.robo.sim.CandleExcelReader; |
||
| 17 | |||
| 18 | public class MainKronus { |
||
| 19 | |||
| 20 | public static void main(String[] args) { |
||
| 21 | List<Candle> candles = new ArrayList<Candle>(); |
||
| 22 | |||
| 23 | CandleExcelReader reader = new CandleExcelReader(); |
||
| 24 | try { |
||
| 25 | candles = reader.lerCandles("/dados.xls"); |
||
| 26 | System.out.println("Qtd candles lidos: " + candles.size()); |
||
| 27 | } catch (IOException e) { |
||
| 28 | e.printStackTrace(); |
||
| 29 | } |
||
| 30 | } |
||
| 31 | |||
| 32 | } |