Dukascopy
 
 
Wiki JStore Search Login

problem with this code
 Post subject: problem with this code Post rating: 0   New post Posted: Wed 11 Jan, 2012, 20:39 

User rating: 0
Joined: Wed 11 Jan, 2012, 20:09
Posts: 4
Hello,
I have a problem with this code. I constantly beckomme this exception.
java.lang.ClassCastException: com.dukascopy.transport.common.msg.g.e cannot be cast to java.lang.Comparable @ java.util.TreeMap.compare(Unknown Source)

Thank you for your help.

package charts.test;

import java.util.*;
import java.text.*;
import com.dukascopy.api.*;
import java.io.File;
import java.util.UUID;

import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
import javax.sound.sampled.DataLine;
import javax.swing.AbstractCellEditor;
import javax.swing.CellEditor;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JDialog;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JSpinner;
import javax.swing.JTable;
import javax.swing.ListSelectionModel;
import javax.swing.SpinnerNumberModel;
import javax.swing.SwingConstants;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.TableCellEditor;
import javax.swing.table.TableCellRenderer;
import javax.swing.table.TableColumn;

import java.awt.Component;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.io.File;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Currency;
import java.util.Date;
import java.util.EventObject;
import java.util.List;
import java.util.TimeZone;
import java.awt.Color;
import java.awt.Font;

import com.dukascopy.api.Configurable;
import com.dukascopy.api.IAccount;
import com.dukascopy.api.IBar;
import com.dukascopy.api.IChart;
import com.dukascopy.api.IConsole;
import com.dukascopy.api.IContext;
import com.dukascopy.api.IEngine;
import com.dukascopy.api.IHistory;
import com.dukascopy.api.IIndicators;
import com.dukascopy.api.IMessage;
import com.dukascopy.api.IStrategy;
import com.dukascopy.api.ITick;
import com.dukascopy.api.IUserInterface;
import com.dukascopy.api.JFException;
import com.dukascopy.api.Instrument;

//import com.dukascopy.api.drawings.*;
import com.dukascopy.api.drawings.IChartObjectFactory;


import com.dukascopy.api.drawings.ISignalDownChartObject;
import com.dukascopy.api.drawings.ISignalUpChartObject;





public class SUN_FOREX_TEST implements IStrategy {
   
   private IEngine engine;
   private IConsole console;
   private IHistory history;
   private IContext context;
   private IIndicators indicators;
   private IUserInterface userInterface;
    private Period         selectedPeriod = Period.FIVE_MINS;
    private OfferSide      selectedOfferSide;
    private IChart         chart;
   
   
     protected static Map<Currency, Instrument> pairs = new HashMap<Currency, Instrument>();

    static {
       pairs.put(Currency.getInstance("AUD"), Instrument.AUDUSD);
       pairs.put(Currency.getInstance("CAD"), Instrument.USDCAD);
       pairs.put(Currency.getInstance("CHF"), Instrument.USDCHF);
       pairs.put(Currency.getInstance("DKK"), Instrument.USDDKK);
       pairs.put(Currency.getInstance("EUR"), Instrument.EURUSD);
       pairs.put(Currency.getInstance("GBP"), Instrument.GBPUSD);
       pairs.put(Currency.getInstance("HKD"), Instrument.USDHKD);
       pairs.put(Currency.getInstance("JPY"), Instrument.USDJPY);
       pairs.put(Currency.getInstance("MXN"), Instrument.USDMXN);
       pairs.put(Currency.getInstance("NOK"), Instrument.USDNOK);
       pairs.put(Currency.getInstance("NZD"), Instrument.NZDUSD);
      // pairs.put(Currency.getInstance("SEK"), Instrument.USDSEK);
      // pairs.put(Currency.getInstance("SGD"), Instrument.USDSGD);
      // pairs.put(Currency.getInstance("TRY"), Instrument.USDTRY);
    }

   
    static private Map<Instrument,Double> subscribedCurrencies;
    private Currency accountCurrency;
   
   
 
   private IAccount account;

   public int counter = 0;
   public int _day;
   public int _hours;
   public int _minutes; 
   public long _signalBarTime = 0;
   private boolean tradingAllowed = true;

   //public Instrument defInst1 = Instrument.GBPUSD;
   public Period defPeriod = Period.ONE_HOUR;
     @Configurable("Instrument")
    private Instrument     selectedInstrument     = Instrument.EURUSD;
   
   // private boolean        BULLISH                = true;
   // private boolean        BEARISH                = t;
         
   public double slippage = 4;
    public double lot;
   
    @Configurable("")public boolean EURUSD= true ;
    @Configurable("")public boolean GBPUSD= true; 
    @Configurable("")public boolean USDCHF= true;
    @Configurable("")public boolean USDJPY= true;
    @Configurable("")public boolean USDCAD= true;
    @Configurable("")public boolean AUDUSD= false;
   
    @Configurable("")public boolean AUDNZD= false;
    @Configurable("")public boolean GBPJPY= false;
    @Configurable("")public boolean GBPCAD= false;
    @Configurable("")public boolean GBPNZD= false;
   
    @Configurable("")public boolean NZDUSD= false;
   
    @Configurable("")public boolean AUDJPY= false;
    @Configurable("")public boolean CADJPY= false;
    @Configurable("")public boolean CHFJPY= false;
    @Configurable("")public boolean EURCHF= false;
    @Configurable("")public boolean EURGBP= false;
    @Configurable("")public boolean EURJPY= false;
     
 
     
   
     public int  direction = 0 ;
     public int  charttime = 0 ;
     public boolean kerze_S = false ;
     public boolean kerze_L = false ;
     public long barOpenTimeNew = 0 ;
     public long barOpenTimeOld = 0 ;
     public long barOpenTimeNew5 = 0 ;
     public long barOpenTimeOld5 = 0 ;
     
    public boolean unterverkauf_EURUSD  = false ;
    public boolean unterverkauf_GBPUSD  = false ;
    public boolean unterverkauf_USDJPY  = false ;
    public boolean unterverkauf_USDCHF  = false ;
    public boolean unterverkauf_GBPJPY  = false ;
    public boolean unterverkauf_USDCAD  = false ;
    public boolean unterverkauf_EURGBP  = false ;
   
    public boolean ueberkauf_EURUSD  = false ;
    public boolean ueberkauf_GBPUSD  = false ;
    public boolean ueberkauf_USDJPY  = false ;
    public boolean ueberkauf_USDCHF  = false ;
    public boolean ueberkauf_GBPJPY  = false ;
    public boolean ueberkauf_USDCAD  = false ;
    public boolean ueberkauf_EURGBP  = false ;
   
    public boolean unterverkauf_EURUSD_15_OK  = false ;
    public boolean unterverkauf_GBPUSD_30  = false ;
    public boolean unterverkauf_USDJPY_30  = false ;
    public boolean unterverkauf_USDCHF_30 = false ;
    public boolean unterverkauf_GBPJPY_30  = false ;
    public boolean unterverkauf_USDCAD_30  = false ;
    public boolean unterverkauf_EURGBP_30  = false ;
   
    public boolean ueberkauf_EURUSD_15_OK  = false ;
    public boolean ueberkauf_GBPUSD_30  = false ;
    public boolean ueberkauf_USDJPY_30  = false ;
    public boolean ueberkauf_USDCHF_30  = false ;
    public boolean ueberkauf_GBPJPY_30  = false ;
    public boolean ueberkauf_USDCAD_30  = false ;
    public boolean ueberkauf_EURGBP_30  = false ;
   
    public boolean  LONG_SIGNAL_EURUSD_5_OK = false ;
    public boolean  SHORT_SIGNAL_EURUSD_5_OK = false ;
   
    public boolean  mainOrderSELL_EURUSD_ON = false ;
    public boolean  mainOrderBUY_EURUSD_ON = false ;
   
   
   
 
   
     public  int shortcount =0 ;
     public  int longcount =0 ;
     public boolean bbverletzt5_S = false ;
     public boolean bbverletzt5_L = false ;
     public double max = 0 ;
     public double min = 0 ;
     
 
    public double minlot = 0.1;
   public double maxlot = 0.01;
   public double riskpct = 10;
   @Configurable("")public double TP = 5;   
   @Configurable("")public double SL = 20;
   
     public int trailingStop = 45;
   @Configurable("")public int _UseHourTrade=0;
   @Configurable("")public int _FromHourTrade=18;
   @Configurable("")public int _ToHourTrade=24;
 
   public int lockPip = 3;
   public boolean moveBE = true;
    public double price;
    public double BBprice;
    public double CCIprice;
    public ITick tic;
   @Configurable("Alarm file1") public File alarmFile1;
   @Configurable("Alarm file2") public File alarmFile2;
   
   

   public SimpleDateFormat df = new SimpleDateFormat("MMdd_HHmmss");
   
   
   public void onStart(IContext context) throws JFException {
       
      /*  Set subscribedInstruments = new HashSet();
        subscribedInstruments.add(Instrument.EURUSD);
        context.setSubscribedInstruments(subscribedInstruments);*/
       
        this.engine = context.getEngine();
        this.console = context.getConsole();
        this.history = context.getHistory();
        this.context = context;
        this.indicators = context.getIndicators();
        this.userInterface = context.getUserInterface();
       //JPanel myTab = userInterface.getBottomTab("SUN-FOREX");
       // this.chart = context.getChart(selectedInstrument);
       // this.selectedPeriod = chart.getSelectedPeriod();
        //this.selectedOfferSide = chart.getSelectedOfferSide();
          subscribedCurrencies = new HashMap<Instrument,Double>();
        for(Instrument inst:Instrument.values()){
            try{
                if (history.getLastTick(inst)==null) continue;
            }
            catch (Exception e){
                continue;
            }
            subscribedCurrencies.put(inst,0.0);
            }
      console.getOut().println("---SUN FOREX ON---");
       
       
     
           
       
     }

   public void onAccount(IAccount account) throws JFException {
           //this.account = account;
       }

   public void onTick(Instrument instrument, ITick tick) throws JFException {
     
       
    }
   
   
   
   
   public void onBar(Instrument instrument, Period period, IBar askBar, IBar bidBar) throws JFException {   
       
       /* if ( period != selectedPeriod)
            return;*/
             
             Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
             calendar.setTimeInMillis(_signalBarTime);
             chart = context.getChart(instrument);
             Period Periode = Period.ONE_MIN ;
             
                 
             
             
            _day=calendar.get(Calendar.DAY_OF_WEEK)-1;
             _hours=calendar.get(Calendar.HOUR_OF_DAY);
             _minutes=calendar.get(Calendar.MINUTE);
             
           /*  int ON = 0 ;
             
            if(_day==5 && _hours>20) return;
            if(_day>5 || (_day==0 && _hours<21)) return;
       
       
             if (_UseHourTrade==1) {
                 if (!(_hours >= _FromHourTrade && _hours <= _ToHourTrade)) {
                   return;
                       }
             }  */   
             
           
             
             
            double PIP = instrument.getPipValue(); 
           
             int pos=0;
             int dos=0;

          /*  for (IOrder order : engine.getOrders(instrument)) {   
                   if (order.getState() == IOrder.State.CREATED) tradingAllowed = false;
                   if (order.getState() == IOrder.State.FILLED ) {
                       tradingAllowed = false;
                       if (order.isLong())  pos=1;                                 
                       else                 pos=-1;
                                                           
                       if (SL>0 && order.getStopLossPrice()==0) order.setStopLossPrice(order.getOpenPrice() - pos*PIP*SL, OfferSide.BID, trailingStop);
                       if (TP>0 && order.getTakeProfitPrice()==0) order.setTakeProfitPrice(order.getOpenPrice() + pos*PIP*TP);

                        boolean isLong;
                                double open, stop, diff, newStop;

                                isLong = order.isLong();
                                open = order.getOpenPrice();
                                stop = order.getStopLossPrice();
                                diff = open - stop;             // stop loss distance
                      if (isLong) {                   // long side order             
                               if (moveBE && diff > 0 && tic.getBid() > (open + diff)) {
                                 newStop = open + instrument.getPipValue() * lockPip;
                                 order.setStopLossPrice(newStop);                                               
                               }   
                      }
                     
                      else {                                  // short side order                   
                               if (moveBE && diff < 0 && tic.getAsk() < (open + diff)) {      // diff is negative                       
                                   newStop = open - (instrument.getPipValue() * lockPip);
                                                order.setStopLossPrice(newStop);
                                }                             
                      }
                   }
            }*/
       
       
         
            /* double ma1min_18_0 = indicators.ma(instrument,Periode,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,18,IIndicators.MaType.WMA,0);
             double ma1min_18_1 = indicators.ma(instrument,Periode,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,18,IIndicators.MaType.WMA,1);
             double ma1min_18_2 = indicators.ma(instrument,Periode,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,18,IIndicators.MaType.WMA,2);
             double ma1min_18_3 = indicators.ma(instrument,Periode,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,18,IIndicators.MaType.WMA,3);
             double ma1min_18_4 = indicators.ma(instrument,Periode,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,18,IIndicators.MaType.WMA,4);
             
             
             double ma1min_5_0 = indicators.ma(instrument,Periode,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,5,IIndicators.MaType.SMA,0);
             double ma1min_5_1 = indicators.ma(instrument,Periode,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,5,IIndicators.MaType.SMA,1);   
             double ma1min_5_2 = indicators.ma(instrument,Periode,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,5,IIndicators.MaType.SMA,2);
             double ma1min_5_3 = indicators.ma(instrument,Periode,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,5,IIndicators.MaType.SMA,3);
             double ma1min_5_4 = indicators.ma(instrument,Periode,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,5,IIndicators.MaType.SMA,4);   
             
             double ma5min_18_0 = indicators.ma(instrument,Period.FIVE_MINS,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,18,IIndicators.MaType.WMA,0);
             double ma5min_18_1 = indicators.ma(instrument,Period.FIVE_MINS,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,18,IIndicators.MaType.WMA,1);
             
             
             double ma5min_5_0 = indicators.ma(instrument,Period.FIVE_MINS,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,5,IIndicators.MaType.SMA,0);
             double ma5min_5_1 = indicators.ma(instrument,Period.FIVE_MINS,OfferSide.BID,IIndicators.AppliedPrice.CLOSE,5,IIndicators.MaType.SMA,1);             
           
             double [] bband_0 = indicators.bbands(instrument, Periode, OfferSide.BID, IIndicators.AppliedPrice.CLOSE,16,2,2,IIndicators.MaType.SMA, 0 );
             double [] bband_1 = indicators.bbands(instrument, Periode, OfferSide.BID, IIndicators.AppliedPrice.CLOSE,16,2,2,IIndicators.MaType.SMA, 1 );
             double [] bband_2 = indicators.bbands(instrument, Periode, OfferSide.BID, IIndicators.AppliedPrice.CLOSE,16,2,2,IIndicators.MaType.SMA, 2 );
           
             
             double [] bband5_0 = indicators.bbands(instrument, Period.FIVE_MINS, OfferSide.BID, IIndicators.AppliedPrice.CLOSE,16,2,2,IIndicators.MaType.SMA, 0 );
             double [] bband5_1 = indicators.bbands(instrument, Period.FIVE_MINS, OfferSide.BID, IIndicators.AppliedPrice.CLOSE,16,2,2,IIndicators.MaType.SMA, 1 );
             double [] bband5_2 = indicators.bbands(instrument, Period.FIVE_MINS, OfferSide.BID, IIndicators.AppliedPrice.CLOSE,16,2,2,IIndicators.MaType.SMA, 2 );
             double [] bband5_3 = indicators.bbands(instrument, Period.FIVE_MINS, OfferSide.BID, IIndicators.AppliedPrice.CLOSE,16,2,2,IIndicators.MaType.SMA, 3 );
             double [] bband5_4 = indicators.bbands(instrument, Period.FIVE_MINS, OfferSide.BID, IIndicators.AppliedPrice.CLOSE,16,2,2,IIndicators.MaType.SMA, 4 );
             double [] bband5_5 = indicators.bbands(instrument, Period.FIVE_MINS, OfferSide.BID, IIndicators.AppliedPrice.CLOSE,16,2,2,IIndicators.MaType.SMA, 5 );*/
             
           
             
             double cci1_0 = indicators.cci(instrument, Period.ONE_MIN, OfferSide.BID, 38, 0);
             double cci1_1 = indicators.cci(instrument, Period.ONE_MIN, OfferSide.BID, 38, 1);
             
             double cci5_0 = indicators.cci(instrument, Period.FIVE_MINS, OfferSide.BID, 38, 0);
             double cci5_1 = indicators.cci(instrument, Period.FIVE_MINS, OfferSide.BID, 38, 1);
             
            // double cci5_0_20_LEVEL = indicators.cci(instrument, Period.FIVE_MINS, OfferSide.BID, 38, 1);
            // double cci5_1_20_LEVEL = indicators.cci(instrument, Period.FIVE_MINS, OfferSide.BID, 38, 3);
             
             
           
           
            // double cci15_0 = indicators.cci(instrument, Period. THIRTY_MINS, OfferSide.BID, 38, 1);
            // double cci15_1 = indicators.cci(instrument, Period. THIRTY_MINS, OfferSide.BID, 38, 2);
             
             //double cci15_0 = indicators.cci(instrument, Period.FIFTEEN_MINS, OfferSide.BID, 38, 1);
            // double cci15_1 = indicators.cci(instrument, Period.FIFTEEN_MINS, OfferSide.BID, 38, 2);
             
             
             
       
           
           
            /* IBar minBar_0 = history.getBar(instrument,Period.ONE_MIN,OfferSide.BID,0);
             IBar minBar_1 = history.getBar(instrument,Period.ONE_MIN,OfferSide.BID,1);
             IBar minBar_2 = history.getBar(instrument,Period.ONE_MIN,OfferSide.BID,2);
             
             IBar minBar5_0 = history.getBar(instrument,Period.FIVE_MINS,OfferSide.BID,0);
             IBar minBar5_1 = history.getBar(instrument,Period.FIVE_MINS,OfferSide.BID,1);*/
             
             IBar minBar5_2 = history.getBar(instrument,Period.FIVE_MINS,OfferSide.BID,1);
             IBar minBar5_0 = history.getBar(instrument,Period.FIVE_MINS,OfferSide.BID,0);
           
             
             
         
             
             double barHigh_5min_2 = minBar5_2.getHigh();
             double barLow_5min_2 = minBar5_2.getLow();
           
           
             
         
   
          //---------------------SELL Signal-----------------------------------------------------------------------------------------------------------------
           
                       
           if ( instrument == Instrument.EURUSD && EURUSD==true &&  cci5_0 < 240 && cci5_1 >= 240 && ueberkauf_EURUSD == false  ){
                 unterverkauf_EURUSD = false ;
                 ueberkauf_EURUSD = true ;
                 mainOrderSELL_EURUSD_ON = true ;
               
               
              }   
         
           if ( instrument == Instrument.EURUSD && EURUSD==true &&  cci1_0 < -80 && cci1_1 >= -80 && cci5_0 < cci5_1 && ueberkauf_EURUSD == true    ){   
                //engine.submitOrder(getLabel(instrument,calendar)+"_S", instrument, IEngine.OrderCommand.SELL, 0.001, 0, slippage);
               //chart.draw("signal_down", IChart.Type.SIGNAL_DOWN, tic.getTime(), barHigh_5min_2 );
             
               drawSignal(minBar5_0.getTime(),barHigh_5min_2  + (barHigh_5min_2 - barLow_5min_2)/2  , false, mainOrderSELL_EURUSD_ON);
               shortcount++;
               if ( mainOrderSELL_EURUSD_ON == true ){
                    activateAlert1(instrument, -1, 5);
                     print( instrument.name() + " : MAIN Short Signal in 5min Chart  " );
                    }
               if ( mainOrderSELL_EURUSD_ON == false ){     
                    activateAlert2(instrument, -1, 5);
                     print( instrument.name() + " : Short Signal   " );
                    }
                   
               mainOrderSELL_EURUSD_ON = false ;   
           }
             
             
          //-------------------------------------------------------------------------------------------------------------
             
       /*  if ( instrument == Instrument.GBPUSD && GBPUSD==true && cci5_0 <= 240 && cci5_1 >= 240 && ueberkauf_GBPUSD == false  ){
              ueberkauf_GBPUSD = true ;
            }       
                     
         if ( instrument == Instrument.GBPUSD && GBPUSD==true && cci1_0 <= -90 && cci1_1 >= -90 && ueberkauf_GBPUSD == true  ){   
                //IChartObjectFactory factory = chart.getChartObjectFactory();
                //lot = getLot(instrument);
               //engine.submitOrder(getLabel(instrument,calendar)+"_S", instrument, IEngine.OrderCommand.SELL, lot, 0, slippage);
               //chart.draw("signal_down", IChart.Type.SIGNAL_DOWN, tic.getTime(), barHigh_5min_2 );
               drawSignal(minBar5_0.getTime(),barHigh_5min_2  + (barHigh_5min_2 - barLow_5min_2)/2  , BEARISH);
               //activateAlert(instrument, -1, 5);
               print( instrument.name() + " : Short Signal in 5min Chart  " );
               if(cci5_0 <= -200)
                ueberkauf_GBPUSD = false;
               shortcount++;     
            }
       
          //-------------------------------------------------------------------------------------------------------------       
           
         if ( instrument == Instrument.USDCAD && USDCAD==true && cci5_0 <= 240 && cci5_1 >= 240 && ueberkauf_USDCAD == false  ){
              ueberkauf_USDCAD = true ;
            }       
                     
         if (instrument == Instrument.USDCAD && USDCAD==true && cci1_0 <= -90 && cci1_1 >= -90 && ueberkauf_USDCAD == true  ){   
               //IChartObjectFactory factory = chart.getChartObjectFactory();
               // lot = getLot(instrument);
               //engine.submitOrder(getLabel(instrument,calendar)+"_S", instrument, IEngine.OrderCommand.SELL, lot, 0, slippage);
              // chart.draw("signal_down", IChart.Type.SIGNAL_DOWN, tic.getTime(), barHigh_5min_2 );
              drawSignal(minBar5_0.getTime(),barHigh_5min_2  + (barHigh_5min_2 - barLow_5min_2)/2  , BEARISH);
             // activateAlert(instrument, -1, 5);
               print( instrument.name() + " : Short Signal in 5min Chart  " );
               if(cci5_0 <= -200)
                 ueberkauf_USDCAD = false;
               shortcount++;     
            }
           
          //-------------------------------------------------------------------------------------------------------------
             
         if ( instrument == Instrument.USDCHF && USDCHF==true && cci5_0 <= 240 && cci5_1 >= 240 && ueberkauf_USDCHF == false  ){
              ueberkauf_USDCHF = true ;
            }       
                     
         if (instrument == Instrument.USDCHF && USDCHF==true && cci1_0 <= -90 && cci1_1 >= -90 && ueberkauf_USDCHF == true  ){   
               //IChartObjectFactory factory = chart.getChartObjectFactory();
               // lot = getLot(instrument);
               //engine.submitOrder(getLabel(instrument,calendar)+"_S", instrument, IEngine.OrderCommand.SELL, lot, 0, slippage);
               //chart.draw("signal_down", IChart.Type.SIGNAL_DOWN, tic.getTime(), barHigh_5min_2  );
               if(cci5_0 <= -200)
                 ueberkauf_USDCHF = false;
                 
               drawSignal(minBar5_0.getTime(),barHigh_5min_2  + (barHigh_5min_2 - barLow_5min_2)/2  , BEARISH);
               print( instrument.name() + " : Short Signal in 5min Chart  " );
              // activateAlert(instrument, -1, 5);
               shortcount++;
               
               
            }
           
          //------------------------------------------------------------------------------------------------------------- 
             
         if ( instrument == Instrument.USDJPY && USDJPY==true && cci5_0 <= 240 && cci5_1 >= 240 && ueberkauf_USDJPY == false  ){
              ueberkauf_USDJPY = true ;
            }       
                     
         if (instrument == Instrument.USDJPY && USDJPY==true && cci1_0 <= -90 && cci1_1 >= -90 && ueberkauf_USDJPY == true  ){   
               //IChartObjectFactory factory = chart.getChartObjectFactory();
                //lot = getLot(instrument);
               //engine.submitOrder(getLabel(instrument,calendar)+"_S", instrument, IEngine.OrderCommand.SELL, lot, 0, slippage);
              // chart.draw("signal_down", IChart.Type.SIGNAL_DOWN, tic.getTime(), barHigh_5min_2 );
                drawSignal(minBar5_0.getTime(),barHigh_5min_2  + (barHigh_5min_2 - barLow_5min_2)/2  , BEARISH);
              // activateAlert(instrument, -1, 5);
               print( instrument.name() + " : Short Signal in 5min Chart  " );
               if(cci5_0 <= -200)
                 ueberkauf_USDJPY = false; 
               shortcount++;     
            }
         //-------------------------------------------------------------------------------------------------------------   
           
          if ( instrument == Instrument.EURGBP && EURGBP==true && cci5_0 <= 240 && cci5_1 >= 240 && ueberkauf_EURGBP == false  ){
              ueberkauf_EURGBP = true ;
            }       
                     
         if (instrument == Instrument.EURGBP && EURGBP==true && cci1_0 <= -90 && cci1_1 >= -90 && ueberkauf_EURGBP == true  ){   
              // IChartObjectFactory factory = chart.getChartObjectFactory();
                //lot = getLot(instrument);
               //engine.submitOrder(getLabel(instrument,calendar)+"_S", instrument, IEngine.OrderCommand.SELL, lot, 0, slippage);
               //chart.draw("signal_down", IChart.Type.SIGNAL_DOWN, tic.getTime(), barHigh_5min_2 );
                drawSignal(minBar5_0.getTime(),barHigh_5min_2  + (barHigh_5min_2 - barLow_5min_2)/2  , BEARISH);
               //activateAlert(instrument, -1, 5);
               print( instrument.name() + " : Short Signal in 5min Chart  " );
               if(cci5_0 <= -200)
                ueberkauf_EURGBP = false; 
               shortcount++;     
            }*/
         
             
   
       
         //---------------------BUY Signal-----------------------------------------------------------------------------------------------------------------
       
       
           
   
          if ( instrument == Instrument.EURUSD && EURUSD==true &&  cci5_0 > -240 && cci5_1 <= -240 && unterverkauf_EURUSD == false ){
               ueberkauf_EURUSD = false ;
               unterverkauf_EURUSD = true ;
               mainOrderBUY_EURUSD_ON = true ;
               
            }     
                   
          if ( instrument == Instrument.EURUSD && EURUSD==true && cci1_0 > 80 && cci1_1 <= 80 &&  cci5_0 > cci5_1 && unterverkauf_EURUSD == true ){   
              //lot = getLot(instrument);
              //engine.submitOrder(getLabel(instrument,calendar)+"_L", instrument, IEngine.OrderCommand.BUY, 0.001, 0, slippage);
              // chart.draw("signal_up", IChart.Type.SIGNAL_UP, tic.getTime(), barLow_5min_2 );
               
               drawSignal(minBar5_0.getTime(), barLow_5min_2  - (barHigh_5min_2 - barLow_5min_2)/2  , true, mainOrderBUY_EURUSD_ON );
               longcount++;
               if ( mainOrderBUY_EURUSD_ON == true ){
                    activateAlert1(instrument, 1, 5);
                    print(  instrument.name()  + " : MAIN Long Signal in 5min Chart  " );
                    }
               if ( mainOrderBUY_EURUSD_ON == false ){     
                    activateAlert2(instrument, 1, 5);
                    print(  instrument.name()  + " : Long Signal   " );
                    }
               mainOrderBUY_EURUSD_ON = false ; 
               
          }
         
         
         
       //-------------------------------------------------------   
           
        /*  if ( instrument == Instrument.GBPUSD && GBPUSD==true &&   cci5_0 >= -240 && cci5_1 <= -240 && unterverkauf_GBPUSD == false){
                unterverkauf_GBPUSD = true ;
            }
             
          if (  instrument == Instrument.GBPUSD && GBPUSD==true && cci1_0 >= 90 && cci1_1 <= 90 && unterverkauf_GBPUSD == true ){   
                 //IChartObjectFactory factory = chart.getChartObjectFactory();
                 // lot = getLot(instrument);
                 // engine.submitOrder(getLabel(instrument,calendar)+"_L", instrument, IEngine.OrderCommand.BUY, lot, 0, slippage);
                 // chart.draw("signal_up", IChart.Type.SIGNAL_UP, tic.getTime(), barLow_5min_2  );
                 drawSignal(minBar5_0.getTime(), barLow_5min_2  - (barHigh_5min_2 - barLow_5min_2)/2  , BULLISH);
                // activateAlert(instrument, 1, 5);
                 print( instrument.name() + " : Long Signal in 5min Chart  " );
                 if(cci5_0 >= 200)
                   unterverkauf_GBPUSD = false ;     
                 longcount++;           
          }
         
        //------------------------------------------------------------------- 
         
          if ( instrument == Instrument.USDCHF && USDCHF==true &&  cci5_0 > -240 && cci5_1 <= -240 && unterverkauf_USDCHF == false ){
               unterverkauf_USDCHF = true ;
            }
             
             
                   
          if ( instrument == Instrument.USDCHF && USDCHF==true && cci1_0 >= 90 && cci1_1 <= 90 && unterverkauf_USDCHF == true ){   
              // IChartObjectFactory factory = chart.getChartObjectFactory();
               //lot = getLot(instrument);
               // engine.submitOrder(getLabel(instrument,calendar)+"_L", instrument, IEngine.OrderCommand.BUY, lot, 0, slippage);
              // chart.draw("signal_up", IChart.Type.SIGNAL_UP, tic.getTime(), barLow_5min_2   );
               drawSignal(minBar5_0.getTime(), barLow_5min_2  - (barHigh_5min_2 - barLow_5min_2)/2  , BULLISH);
               //activateAlert(instrument, 1, 5);
               print(instrument.name() + " : Long Signal in 5min Chart  " );
               if(cci5_0 >= 200)
                 unterverkauf_USDCHF = false ;
               longcount++;             
          }
         
       //---------------------------------------------------------------   
         
           if (instrument == Instrument.USDJPY && USDJPY==true && cci5_0 > -240 && cci5_1 <= -240 && unterverkauf_USDJPY == false){
             unterverkauf_USDJPY = true ;
            }
             
             
                   
          if (instrument == Instrument.USDJPY && USDJPY==true && cci1_0 >= 90 && cci1_1 <= 90 && unterverkauf_USDJPY == true ){   
                // IChartObjectFactory factory = chart.getChartObjectFactory();
                 // lot = getLot(instrument);
                 // engine.submitOrder(getLabel(instrument,calendar)+"_L", instrument, IEngine.OrderCommand.BUY, lot, 0, slippage);
                 // chart.draw("signal_up", IChart.Type.SIGNAL_UP, tic.getTime(), barLow_5min_2 );
                  drawSignal(minBar5_0.getTime(), barLow_5min_2  - (barHigh_5min_2 - barLow_5min_2)/2  , BULLISH);
                 // activateAlert(instrument, 1, 5);
                  print( instrument.name() + " : Long Signal in 5min Chart  " );
                  if(cci5_0 >= 200)
                     unterverkauf_USDJPY = false ;
                  longcount++;               
          }
         
         //-------------------------------------------------------------
         
           if ( instrument == Instrument.USDCAD && USDCAD==true &&  cci5_0 > -240 && cci5_1 <= -240 && unterverkauf_USDCAD == false ){
               unterverkauf_USDCAD = true ;
            }
             
             
                   
          if (instrument == Instrument.USDCAD && USDCAD==true && cci1_0 >= 90 && cci1_1 <= 90 && unterverkauf_USDCAD == true ){   
              // IChartObjectFactory factory = chart.getChartObjectFactory();
               //lot = getLot(instrument);
               // engine.submitOrder(getLabel(instrument,calendar)+"_L", instrument, IEngine.OrderCommand.BUY, lot, 0, slippage);
              // chart.draw("signal_up", IChart.Type.SIGNAL_UP, tic.getTime(), barLow_5min_2 );
               drawSignal(minBar5_0.getTime(), barLow_5min_2  - (barHigh_5min_2 - barLow_5min_2)/2  , BULLISH);
               activateAlert(instrument, 1, 5);
               print(  instrument.name() + " : Long Signal in 5min Chart  " );
               if(cci5_0 >= 200)
                 unterverkauf_USDCAD = false ;
               longcount++;             
          }
         
         
          if ( instrument == Instrument.EURGBP && EURGBP==true && cci5_0 > -240 && cci5_1 <= -240 && unterverkauf_EURGBP == false ){
               unterverkauf_EURGBP = true ;
            }
             
             
                   
          if (instrument == Instrument.EURGBP && EURGBP==true && cci1_0 >= 90 && cci1_1 <= 90 && unterverkauf_EURGBP == true ){   
             // IChartObjectFactory factory = chart.getChartObjectFactory();
              // lot = getLot(instrument);
               // engine.submitOrder(getLabel(instrument,calendar)+"_L", instrument, IEngine.OrderCommand.BUY, lot, 0, slippage);
              // chart.draw("signal_up", IChart.Type.SIGNAL_UP, tic.getTime(), barLow_5min_2 );
               drawSignal(minBar5_0.getTime(), barLow_5min_2  - (barHigh_5min_2 - barLow_5min_2)/2  , BULLISH);
               activateAlert(instrument, 1, 5);
               print(  instrument.name() + " : Long Signal in 5min Chart  " );
               if(cci5_0 >= 200)
                 unterverkauf_EURGBP = false ;
               longcount++;             
          }  */
     
                
     }   
     private void activateAlert( Instrument instrument, int direction, int charttime ) throws JFException {
           
            playSound(alarmFile1);           
                   
          /* if (direction == -1 && charttime == 5)
            showPopup("Short Signal 5min timeframe " + instrument.name());
           if(direction == 1 && charttime == 5)
            showPopup("Long Signal 5min timeframe " + instrument.name());      */   
                     
     }
       
     
     
     // private void activateAlert( ) throws JFException {
      private void activateAlert1( Instrument instrument, int direction, int charttime ) throws JFException {
           
            playSound(alarmFile1);           
                   
          /* if (direction == -1 && charttime == 5)
            showPopup("Short Signal 5min timeframe " + instrument.name());
           if(direction == 1 && charttime == 5)
            showPopup("Long Signal 5min timeframe " + instrument.name());      */   
                     
     }
     
       private void activateAlert2( Instrument instrument, int direction, int charttime ) throws JFException {
           
            playSound(alarmFile2);           
                   
          /* if (direction == -1 && charttime == 5)
            showPopup("Short Signal 5min timeframe " + instrument.name());
           if(direction == 1 && charttime == 5)
            showPopup("Long Signal 5min timeframe " + instrument.name());      */   
                     
     }
   
      private void showPopup(String text) {
        JOptionPane optionPane = new JOptionPane(text, JOptionPane.WARNING_MESSAGE);
        JDialog dialog = optionPane.createDialog("Signal");
        dialog.setVisible(true);
     }
       
     

     private void playSound(File wavFile) throws JFException {
        try {
            AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(wavFile);
            AudioFormat af = audioInputStream.getFormat();
            int nSize = (int) (af.getFrameSize() * audioInputStream.getFrameLength());
            byte[] audio = new byte[nSize];
            DataLine.Info info = new DataLine.Info(Clip.class, af, nSize);
            audioInputStream.read(audio, 0, nSize);
            Clip clip = (Clip) AudioSystem.getLine(info);
            clip.open(af, audio, 0, nSize);
            clip.start();
        }
        catch (Exception e) {
            e.printStackTrace();
            throw new JFException(e);
        }
    }
   
     private String getKey(String name) {
        return name + UUID.randomUUID().toString().replace('-', '0');
    }

  private double getLot(Instrument instrument) throws JFException {
        double amount = riskpct * account.getEquity();
        double lotsize = amount / (SL * instrument.getPipValue());
        lotsize /= 1e6;
        if(lotsize < minlot) lotsize = minlot;
        if(lotsize > maxlot) lotsize = maxlot;
        lotsize = (int)(lotsize * 1000) / (1000d);
        //print("Setting risk to $" + (int)amount);
        return lotsize;
    }

    //Create label
    private String getLabel(Instrument instrument, Calendar calendar) {
        String label = instrument.name();
        label = label.substring(0, 3) + label.substring(3, 6);
        label = label + "_" + df.format(calendar.getTime());
        return label;
    }   
   
    public void print(String string) { this.console.getOut().println(string); }
     
   public void onMessage(IMessage message) throws JFException {
      
      
       }
       
   private void drawSignal(long time, double price, boolean bullish , boolean mainOrder) {
       IChartObjectFactory factory = chart.getChartObjectFactory();
       
        if (bullish == true && mainOrder == true ) {
             ISignalUpChartObject up1 = chart.getChartObjectFactory().createSignalUp(getKey("arrowUp1"), time, price);
             up1.setColor(Color.GREEN);
             chart.addToMainChart(up1);
        }
        if (bullish ==true && mainOrder == false ) {
             ISignalUpChartObject up2 = chart.getChartObjectFactory().createSignalUp(getKey("arrowUp2"), time, price);
             up2.setColor(Color.BLUE);
             chart.addToMainChart(up2);
         }
       if (bullish == false && mainOrder == true ) {
             ISignalDownChartObject down1 = chart.getChartObjectFactory().createSignalDown(getKey("arrowDown1"), time, price);
             down1.setColor(Color.RED);
             chart.addToMainChart(down1);
        }
        if (bullish == false && mainOrder == false ) {
            ISignalDownChartObject down2 = chart.getChartObjectFactory().createSignalDown(getKey("arrowDown2"), time, price);
            down2.setColor(Color.ORANGE);
            chart.addToMainChart(down2);
        }
    }
   
   
   public void onStop() throws JFException {
       print("---SunForex OFF---");
        print(" Long entry Signals :  " + longcount);
        print(" Short entry Signals :  " + shortcount);
            
       }
     }
     
 
 


 
 Post subject: also this exception Post rating: 0   New post Posted: Thu 12 Jan, 2012, 01:37 

User rating: 0
Joined: Wed 11 Jan, 2012, 20:09
Posts: 4
I constantly beckomme also this exception :

java.lang.SecurityException: class "com.dukascopy.charts.data.datacache.r" does not match trust level of other classes in the same package @ com.sun.deploy.security.CPCallbackHandler$ChildElement.checkResource(Unknown Source)


 
 Post subject: Re: problem with this code Post rating: 0   New post Posted: Thu 12 Jan, 2012, 10:47 
User avatar

User rating:
Joined: Fri 31 Aug, 2007, 09:17
Posts: 6139
It looks like there has been some problem on server side when the exceptions occurred. If the problem does persist, please provide launch scenario (i.e. whether it's with live-data or in Historical Tester and the time interval), also please provide full stack trace (check it in java console, see: viewtopic.php?f=81&t=39073).


 
 Post subject: Java Console Post rating: 0   New post Posted: Thu 12 Jan, 2012, 12:45 

User rating: 0
Joined: Wed 11 Jan, 2012, 20:09
Posts: 4
I copied what was shown in the Java Console window.
It is unfortunately in German but I think you'll understand.


Java Web Start 1.6.0_30
Verwendung der JRE-Version 1.6.0_30-b12 Java HotSpot(TM) Client VM
Home-Verzeichnis des Benutzers = C:\Users\Anis
----------------------------------------------------
c: Konsole löschen
f: Objekte in Finalisierungswarteschlange finalisieren
g: Speicherbereinigung
h: Diese Hilfemeldung anzeigen
m: Speicherbelegung anzeigen
o: Protokollierung auslösen
p: Proxy-Konfiguration neu laden
q: Konsole ausblenden
r: Richtlinien-Konfiguration neu laden
s: System- und Bereitstellungseigenschaften ausgeben
t: Threadliste ausgeben
v: Thread-Stack ausgeben
0-5: Trace-Stufe auf <n> setzen
----------------------------------------------------
Could not launch from cache. Will try online mode. [Some of required resources are not cached.]
12.01.2012 12:39:05.981 INFO connect.c ] >> [https://www1.dukascopy.com/authorization/live/captcha]
12.01.2012 12:39:06.288 FEIN connect.c ] << [X-CaptchaID : 424419138]


 
 Post subject: Re: Java Console Post rating: 0   New post Posted: Thu 12 Jan, 2012, 12:54 

User rating: 0
Joined: Wed 11 Jan, 2012, 20:09
Posts: 4
Java Web Start 1.6.0_30
Verwendung der JRE-Version 1.6.0_30-b12 Java HotSpot(TM) Client VM
Home-Verzeichnis des Benutzers = C:\Users\Anis
----------------------------------------------------
c: Konsole löschen
f: Objekte in Finalisierungswarteschlange finalisieren
g: Speicherbereinigung
h: Diese Hilfemeldung anzeigen
m: Speicherbelegung anzeigen
o: Protokollierung auslösen
p: Proxy-Konfiguration neu laden
q: Konsole ausblenden
r: Richtlinien-Konfiguration neu laden
s: System- und Bereitstellungseigenschaften ausgeben
t: Threadliste ausgeben
v: Thread-Stack ausgeben
0-5: Trace-Stufe auf <n> setzen
----------------------------------------------------
Could not launch from cache. Will try online mode. [Some of required resources are not cached.]
12.01.2012 12:50:41.821 INFO connect.c ] >> [https://www1.dukascopy.com/authorization/live/captcha]
12.01.2012 12:50:42.199 FEIN connect.c ] << [X-CaptchaID : 753793572]
12.01.2012 12:51:10.169 FEIN component.LoginPanel ] Login request
12.01.2012 12:51:10.170 FEIN component.LoginPanel ] Instance ID : aff1b735-5b00-4f46-a0c8-33c6867fd3fb
12.01.2012 12:51:10.182 FEIN actions.ConnectAction ] Authenticating ...
12.01.2012 12:51:10.187 FEIN connect.c ] >> [https://www1.dukascopy.com/authorization/live/auth?typus=0&munus=api&appello=Hegler368&specialis=662885397650B6DC6C2E21BD8C707D8C2D8454BB&versio=2.12.22&sermo=aff1b735-5b00-4f46-a0c8-33c6867fd3fb&verbum_id=753793572&sententia=9228]
12.01.2012 12:51:10.807 FEIN connect.c ] << [l-ja-gva-122-175.dukascopy.com:10443@753669ac8d6f489b321dbceab4597f2bac1551dcf087e3a0c1ec4ec6bb770a7b]
12.01.2012 12:51:13.812 INFO connect.c ] >> [https://www1.dukascopy.com/authorization/live/auth?typus=0&munus=stngs&appello=Hegler368&licentio=753669ac8d6f489b321dbceab4597f2bac1551dcf087e3a0c1ec4ec6bb770a7b&sermo=aff1b735-5b00-4f46-a0c8-33c6867fd3fb&stngs=1]
12.01.2012 12:51:14.198 WARNUNG connect.c ] << [{news.host.url=https://external.dukascopy.com, menu.item.dayly.hl=daily_hl_interbank/, spot=AT_MARKET, menu.item.economic.calendar=calendars/eccalendar/, pin.help=https://www.dukascopy.com/plugins/cont.php?ref_id=7252, menu.item.forex.calculator=forexcalc/forex_calculator/, news.details.url=/aDDS/export/djnews.php?id=, menu.item.margin.level.calculator=forexcalc/margin_level/, history.server.url=https://www.dukascopy.com/datafeed/, ta.curves.url=https://live-chart01.dukascopy.com:10443, menu.item.report.issue=/about/issues/, reports=portfolio_client,intraday_client,position_client,annual_report,trader_sll,self_traded_volume,activity_log,merge_log,trade_log,trader_sll_action_log, wlabel.shortLabel=Dukascopy, jss.logserver.url=https://live-login.dukascopy.com, base.url=https://live-login.dukascopy.com, relaxed_trading=true, Split=split/?tit=Split+Calendar, Interest=interest/?tab_x=465&amp;bor=1&amp;bg=c0c0c0&amp;tcol=000000&amp;col=808080&amp;col1=f8f8f8&amp;col2=f0f0f0&amp;b_col=c0c0c0&amp;fnt_size=9&amp;fnt_col=000000&amp;tfnt_col=ffffff&amp;c_col=ffffff&amp;hgt=245&amp;c_hgt=14&amp;tit=Interest+Rates+Calendar, Earnings=earling/?tit=Earnings+Calendar, National=holiday/?tab_x=465&amp;bor=1&amp;bg=c0c0c0&amp;tcol=000000&amp;col=808080&amp;col1=f8f8f8&amp;col2=f0f0f0&amp;b_col=c0c0c0&amp;fnt_size=9&amp;fnt_col=000000&amp;tfnt_col=ffffff&amp;c_col=000000&amp;hgt=245&amp;c_hgt=14&amp;tit=National+Holidays+Calendar, login.url=https://www1.dukascopy.com/authorization/live,https://www3.dukascopy.com/authorization/live, wlabel.logo=[B@5bb966, reports.url=/Reports, log=EMERGENCY , services1.url=https://live-login.dukascopy.com, get.help.url=https://www.dukascopy.com/swiss/english/forex/jforex/forum/index.php, menu.item.interest.rates.calendar=calendars/InterestRatesCalendar/, menu.item.holidays.calendar=calendars/NationalHolidaysCalendar/, Dividends=dividend/?tit=Dividends+Calendar, wlabel.url=https://www.dukascopy.com, aclg=true, userTypes=MINI_FX,REGULAR,MANAGE_STOP_LIMIT,, curves.url=https://live-chart02.dukascopy.com:10443, additionalUserTypes=[], brokerChat.url=https://live-login.dukascopy.com/fo/chat, wlabel.foUrl=https://live-login.dukascopy.com, pin.check=true, external_ip=93.233.109.129, onlineHelp.url=https://freeserv.dukascopy.com/help_pro/index.php?system=dds20i&section=firstSteps&brand=Dukascopy, short.title=Dukascopy SWFX 3.0i, wlabel.phone=+41 (0) 22 799 4888, encryptionKey=DCC8C05691E943D6C78D2A87C4C87E74, clustered=true, smspc=true , long.title=Dukascopy (Suisse) SA - SWFX 3.0i : FX Marketplace Terminal, Economic=?tit=Economic+Calendar, loginId=7685, pin.auth=/captcha, client.mode=LIVE, wlabel.skype=dukascopy, platformFaq.url=https://dukascopy.com/swiss/english/forex/faq/, wlabel.longLabel=Dukascopy - Swiss Forex Marketplace, news.url=/aDDS/export/djnews.php, skype=skype:dukascopy.trade.desk?call, base.reports.url=https://live-login.dukascopy.com, Event=event/?tit=Event+Calendar, platformManual.url=https://www.dukascopy.com/core/plugins/cont.php?ref_id=15947&noScript=1, news.source=api, transport.url=:10443, base.calendar.url=https://www.dukascopy.com/swiss/{0}/marketwatch/, tradelog_sfx.url=/aDDS/export/tradeLog.php}]
12.01.2012 12:51:40.118 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:40.120 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:40.428 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:40.428 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:40.738 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:40.739 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:40.947 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:40.947 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:41.273 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:41.274 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:41.499 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:41.499 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:41.805 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:41.805 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:42.106 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:42.106 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:42.408 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:42.409 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:42.616 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:42.616 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:42.931 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:42.931 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:43.236 SCHWERWIEGEND execution.l ] Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:43.236 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:43.441 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:43.441 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:43.750 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:43.751 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:44.060 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:44.060 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:44.366 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:44.366 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:44.668 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:44.668 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:44.871 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:44.871 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:45.174 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:45.175 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:49.991 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:49.991 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:50.196 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:50.197 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:50.397 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:50.398 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:50.602 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:50.603 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:50.857 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:50.858 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:51.055 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:51.055 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:51.432 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:51.432 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:51.655 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:51.655 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:51.871 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:51.871 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:52.074 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:52.075 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:52.280 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:52.280 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:52.486 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:52.486 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:52.691 SCHWERWIEGEND execution.l ] Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:52.691 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:52.893 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:52.894 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:53.103 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:53.104 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:53.302 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:53.302 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:53.533 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:53.533 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:53.735 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:53.735 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:53.945 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:53.946 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:59.963 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:51:59.963 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:00.182 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:00.183 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:00.399 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:00.399 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:00.617 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:00.617 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:00.897 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:00.897 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:01.112 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:01.112 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:01.316 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:01.317 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:01.521 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:01.521 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:01.725 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:01.726 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:01.935 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:01.936 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:02.136 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:02.137 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:02.340 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:02.341 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:02.551 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:02.551 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:02.749 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:02.750 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:02.955 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:02.955 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:03.160 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:03.160 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:03.365 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:03.365 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:03.568 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:03.569 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:03.773 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:03.773 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:03.979 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:03.979 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.188 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.188 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.391 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.392 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.598 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.598 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.815 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.815 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.815 SCHWERWIEGEND execution.l ] Instrument [AUD/NZD] not opened
com.dukascopy.api.JFException: Instrument [AUD/NZD] not opened
at com.dukascopy.api.impl.c.getStartTimeOfCurrentBar(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.calculateIndicator(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.cci(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:401)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.816 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Instrument [AUD/NZD] not opened
com.dukascopy.api.JFException: Instrument [AUD/NZD] not opened
at com.dukascopy.api.impl.c.getStartTimeOfCurrentBar(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.calculateIndicator(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.cci(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:401)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.816 SCHWERWIEGEND execution.l ] Instrument [AUD/NZD] not opened
com.dukascopy.api.JFException: Instrument [AUD/NZD] not opened
at com.dukascopy.api.impl.c.getStartTimeOfCurrentBar(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.calculateIndicator(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.cci(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:401)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:04.816 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Instrument [AUD/NZD] not opened
com.dukascopy.api.JFException: Instrument [AUD/NZD] not opened
at com.dukascopy.api.impl.c.getStartTimeOfCurrentBar(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.calculateIndicator(Unknown Source)
at com.dukascopy.api.impl.ab.a(Unknown Source)
at com.dukascopy.api.impl.ab.cci(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:401)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:05.023 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:05.023 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:05.268 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:05.268 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:05.473 SCHWERWIEGEND execution.l ] Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:05.474 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:05.675 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:05.676 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:05.883 SCHWERWIEGEND execution.l ] Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:05.883 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [CAD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:06.084 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:06.088 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:09.983 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:09.983 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:10.209 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:10.209 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:10.414 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:10.414 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:10.619 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:10.619 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:10.826 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:10.826 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:11.031 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:11.031 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:11.293 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:11.293 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:11.503 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:11.503 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:11.706 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:11.707 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:11.909 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:11.910 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/AUD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:12.125 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:12.125 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:12.372 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:12.372 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:12.583 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:12.583 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:12.794 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:12.794 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:20.094 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:20.094 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:20.298 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:20.298 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:20.503 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:20.503 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:20.712 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:20.712 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:20.914 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:20.915 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:21.119 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:21.119 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:21.322 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:21.323 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:21.529 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:21.529 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:21.756 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:21.756 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:21.981 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:21.981 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:22.189 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:22.189 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:30.259 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:30.259 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:30.525 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:30.525 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/NZD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:30.997 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:30.997 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:31.257 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:31.257 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:31.467 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:31.467 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:31.689 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:31.689 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:31.901 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:31.901 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:32.106 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:32.106 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:32.322 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:32.323 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:32.540 SCHWERWIEGEND execution.l ] Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:32.540 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [NZD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:40.085 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:40.086 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:40.563 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:40.564 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:40.799 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:40.800 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:41.016 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:41.016 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:41.243 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:41.243 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:41.458 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:41.458 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:50.246 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:50.247 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:50.481 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:50.482 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:50.693 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:50.693 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:50.898 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:50.898 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:51.107 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:51.108 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:51.329 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:52:51.329 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:00.072 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:00.073 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:00.306 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:00.306 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:00.505 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:00.506 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:00.705 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:00.706 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:00.915 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:00.915 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:01.123 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:01.124 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:01.325 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:01.325 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:01.529 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:01.529 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:01.735 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:01.735 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:01.938 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:01.939 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:02.143 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:02.143 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:20.292 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:20.292 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:20.550 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:20.551 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:21.044 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:21.044 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:21.249 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:21.249 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:21.463 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:21.464 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:21.679 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:21.679 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:30.407 SCHWERWIEGEND execution.l ] Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:30.407 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [EUR/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:30.612 SCHWERWIEGEND execution.l ] Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:30.613 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [AUD/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:30.817 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:30.817 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CAD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:31.122 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:31.123 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/CHF], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:31.327 SCHWERWIEGEND execution.l ] Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:31.328 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [GBP/USD], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:31.533 SCHWERWIEGEND execution.l ] Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
12.01.2012 12:53:31.533 SCHWERWIEGEND agent.q$a ] Exception thrown whiler running onBar method: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
com.dukascopy.api.JFException: Could not load bar for instrument [USD/JPY], period [5 Mins], side [Bid], start time [2012.01.12 11:45:00 000], current bar start time [2012.01.12 11:50:00 000]
at com.dukascopy.api.impl.c.getBar(Unknown Source)
at charts.test.SUN_FOREX_TEST.onBar(SUN_FOREX_TEST.java:430)
at com.dukascopy.api.impl.execution.l.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.f(Unknown Source)
at com.dukascopy.api.impl.execution.e$a.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)


 

Jump to:  

  © 1998-2025 Dukascopy® Bank SA
On-line Currency forex trading with Swiss Forex Broker - ECN Forex Brokerage,
Managed Forex Accounts, introducing forex brokers, Currency Forex Data Feed and News
Currency Forex Trading Platform provided on-line by Dukascopy.com