readers[i]=new Reader(pricesInfo);
threadsReader[i]=new Thread(readers[i]);
}
// Creates a writer and a thread to run it
Writer writer=new Writer(pricesInfo);
Thread threadWriter=new Thread(writer);
// Starts the threads
for (int i=0; i<5; i++){
threadsReader[i].start();