├── .cproject ├── .project ├── Bar.cpp ├── Bar.h ├── DataHandler.cpp ├── DataHandler.h ├── Debug ├── .metadata │ └── .plugins │ │ └── org.eclipse.cdt.make.core │ │ ├── specs.d │ │ ├── specs.o │ │ └── subdir.mk ├── Bar.d ├── Bar.o ├── DataHandler.d ├── DataHandler.o ├── Event.d ├── Event.o ├── EventDrivenPlatform ├── FillEvent.d ├── FillEvent.o ├── HistoricCSVDataHandler.d ├── HistoricCSVDataHandler.o ├── Main.d ├── Main.o ├── MarketEvent.d ├── MarketEvent.o ├── OrderEvent.d ├── OrderEvent.o ├── SignalEvent.d ├── SignalEvent.o ├── Strategy.d ├── Strategy.o ├── makefile ├── objects.mk ├── sources.mk └── subdir.mk ├── Default ├── Bar.d ├── Bar.o ├── DataHandler.d ├── DataHandler.o ├── Debug │ ├── .metadata │ │ └── .plugins │ │ │ └── org.eclipse.cdt.make.core │ │ │ └── subdir.mk │ └── subdir.mk ├── Event.d ├── Event.o ├── EventDrivenPlatform ├── FillEvent.d ├── FillEvent.o ├── HistoricCSVDataHandler.d ├── HistoricCSVDataHandler.o ├── Main.d ├── Main.o ├── MarketEvent.d ├── MarketEvent.o ├── OrderEvent.d ├── OrderEvent.o ├── Portfolio.d ├── Portfolio.o ├── SignalEvent.d ├── SignalEvent.o ├── Strategy.d ├── Strategy.o ├── Tools.d ├── Tools.o ├── makefile ├── objects.mk ├── sources.mk └── subdir.mk ├── Event.cpp ├── Event.h ├── FillEvent.cpp ├── FillEvent.h ├── G.csv ├── HistoricCSVDataHandler.cpp ├── HistoricCSVDataHandler.h ├── M.csv ├── Main.cpp ├── MarketEvent.cpp ├── MarketEvent.h ├── OrderEvent.cpp ├── OrderEvent.h ├── Portfolio.cpp ├── Portfolio.h ├── README.md ├── SignalEvent.cpp ├── SignalEvent.h ├── Strategy.cpp ├── Strategy.h ├── Tools.cpp └── Tools.h /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/.cproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/.project -------------------------------------------------------------------------------- /Bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Bar.cpp -------------------------------------------------------------------------------- /Bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Bar.h -------------------------------------------------------------------------------- /DataHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/DataHandler.cpp -------------------------------------------------------------------------------- /DataHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/DataHandler.h -------------------------------------------------------------------------------- /Debug/.metadata/.plugins/org.eclipse.cdt.make.core/specs.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/.metadata/.plugins/org.eclipse.cdt.make.core/specs.d -------------------------------------------------------------------------------- /Debug/.metadata/.plugins/org.eclipse.cdt.make.core/specs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/.metadata/.plugins/org.eclipse.cdt.make.core/specs.o -------------------------------------------------------------------------------- /Debug/.metadata/.plugins/org.eclipse.cdt.make.core/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/.metadata/.plugins/org.eclipse.cdt.make.core/subdir.mk -------------------------------------------------------------------------------- /Debug/Bar.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/Bar.d -------------------------------------------------------------------------------- /Debug/Bar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/Bar.o -------------------------------------------------------------------------------- /Debug/DataHandler.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/DataHandler.d -------------------------------------------------------------------------------- /Debug/DataHandler.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/DataHandler.o -------------------------------------------------------------------------------- /Debug/Event.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/Event.d -------------------------------------------------------------------------------- /Debug/Event.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/Event.o -------------------------------------------------------------------------------- /Debug/EventDrivenPlatform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/EventDrivenPlatform -------------------------------------------------------------------------------- /Debug/FillEvent.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/FillEvent.d -------------------------------------------------------------------------------- /Debug/FillEvent.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/FillEvent.o -------------------------------------------------------------------------------- /Debug/HistoricCSVDataHandler.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/HistoricCSVDataHandler.d -------------------------------------------------------------------------------- /Debug/HistoricCSVDataHandler.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/HistoricCSVDataHandler.o -------------------------------------------------------------------------------- /Debug/Main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/Main.d -------------------------------------------------------------------------------- /Debug/Main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/Main.o -------------------------------------------------------------------------------- /Debug/MarketEvent.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/MarketEvent.d -------------------------------------------------------------------------------- /Debug/MarketEvent.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/MarketEvent.o -------------------------------------------------------------------------------- /Debug/OrderEvent.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/OrderEvent.d -------------------------------------------------------------------------------- /Debug/OrderEvent.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/OrderEvent.o -------------------------------------------------------------------------------- /Debug/SignalEvent.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/SignalEvent.d -------------------------------------------------------------------------------- /Debug/SignalEvent.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/SignalEvent.o -------------------------------------------------------------------------------- /Debug/Strategy.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/Strategy.d -------------------------------------------------------------------------------- /Debug/Strategy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/Strategy.o -------------------------------------------------------------------------------- /Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/makefile -------------------------------------------------------------------------------- /Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/objects.mk -------------------------------------------------------------------------------- /Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/sources.mk -------------------------------------------------------------------------------- /Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Debug/subdir.mk -------------------------------------------------------------------------------- /Default/Bar.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Bar.d -------------------------------------------------------------------------------- /Default/Bar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Bar.o -------------------------------------------------------------------------------- /Default/DataHandler.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/DataHandler.d -------------------------------------------------------------------------------- /Default/DataHandler.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/DataHandler.o -------------------------------------------------------------------------------- /Default/Debug/.metadata/.plugins/org.eclipse.cdt.make.core/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Debug/.metadata/.plugins/org.eclipse.cdt.make.core/subdir.mk -------------------------------------------------------------------------------- /Default/Debug/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Debug/subdir.mk -------------------------------------------------------------------------------- /Default/Event.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Event.d -------------------------------------------------------------------------------- /Default/Event.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Event.o -------------------------------------------------------------------------------- /Default/EventDrivenPlatform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/EventDrivenPlatform -------------------------------------------------------------------------------- /Default/FillEvent.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/FillEvent.d -------------------------------------------------------------------------------- /Default/FillEvent.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/FillEvent.o -------------------------------------------------------------------------------- /Default/HistoricCSVDataHandler.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/HistoricCSVDataHandler.d -------------------------------------------------------------------------------- /Default/HistoricCSVDataHandler.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/HistoricCSVDataHandler.o -------------------------------------------------------------------------------- /Default/Main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Main.d -------------------------------------------------------------------------------- /Default/Main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Main.o -------------------------------------------------------------------------------- /Default/MarketEvent.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/MarketEvent.d -------------------------------------------------------------------------------- /Default/MarketEvent.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/MarketEvent.o -------------------------------------------------------------------------------- /Default/OrderEvent.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/OrderEvent.d -------------------------------------------------------------------------------- /Default/OrderEvent.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/OrderEvent.o -------------------------------------------------------------------------------- /Default/Portfolio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Portfolio.d -------------------------------------------------------------------------------- /Default/Portfolio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Portfolio.o -------------------------------------------------------------------------------- /Default/SignalEvent.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/SignalEvent.d -------------------------------------------------------------------------------- /Default/SignalEvent.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/SignalEvent.o -------------------------------------------------------------------------------- /Default/Strategy.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Strategy.d -------------------------------------------------------------------------------- /Default/Strategy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Strategy.o -------------------------------------------------------------------------------- /Default/Tools.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Tools.d -------------------------------------------------------------------------------- /Default/Tools.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/Tools.o -------------------------------------------------------------------------------- /Default/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/makefile -------------------------------------------------------------------------------- /Default/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/objects.mk -------------------------------------------------------------------------------- /Default/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/sources.mk -------------------------------------------------------------------------------- /Default/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Default/subdir.mk -------------------------------------------------------------------------------- /Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Event.cpp -------------------------------------------------------------------------------- /Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Event.h -------------------------------------------------------------------------------- /FillEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/FillEvent.cpp -------------------------------------------------------------------------------- /FillEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/FillEvent.h -------------------------------------------------------------------------------- /G.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/G.csv -------------------------------------------------------------------------------- /HistoricCSVDataHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/HistoricCSVDataHandler.cpp -------------------------------------------------------------------------------- /HistoricCSVDataHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/HistoricCSVDataHandler.h -------------------------------------------------------------------------------- /M.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/M.csv -------------------------------------------------------------------------------- /Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Main.cpp -------------------------------------------------------------------------------- /MarketEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/MarketEvent.cpp -------------------------------------------------------------------------------- /MarketEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/MarketEvent.h -------------------------------------------------------------------------------- /OrderEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/OrderEvent.cpp -------------------------------------------------------------------------------- /OrderEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/OrderEvent.h -------------------------------------------------------------------------------- /Portfolio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Portfolio.cpp -------------------------------------------------------------------------------- /Portfolio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Portfolio.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/README.md -------------------------------------------------------------------------------- /SignalEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/SignalEvent.cpp -------------------------------------------------------------------------------- /SignalEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/SignalEvent.h -------------------------------------------------------------------------------- /Strategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Strategy.cpp -------------------------------------------------------------------------------- /Strategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Strategy.h -------------------------------------------------------------------------------- /Tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Tools.cpp -------------------------------------------------------------------------------- /Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPetit12/EventDrivenPlatform/HEAD/Tools.h --------------------------------------------------------------------------------