You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
417 B
18 lines
417 B
10 months ago
|
#ifndef _StarQuant_Services_DataService_H_
|
||
|
#define _StarQuant_Services_DataService_H_
|
||
|
|
||
|
#include <memory>
|
||
|
#include <Common/config.h>
|
||
|
|
||
|
namespace StarQuant
|
||
|
{
|
||
|
|
||
|
//void MarketDataService(std::shared_ptr<marketdatafeed>, int32_t);
|
||
|
void DataBoardService();
|
||
|
void BarAggregatorServcie();
|
||
|
void TickRecordingService();
|
||
|
void TickReplayService(const std::string& filetoreplay,int32_t tickinterval=0);
|
||
|
}
|
||
|
|
||
|
#endif
|