Create option pricing engine structure, test architecture.
Some checks failed
C++ CI / build (push) Has been cancelled
Some checks failed
C++ CI / build (push) Has been cancelled
This commit is contained in:
11
tests/stubs/FlatVolatilitySurface.hpp
Normal file
11
tests/stubs/FlatVolatilitySurface.hpp
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Created by David Doebel on 07.03.2026.
|
||||
//
|
||||
#ifndef QUANTENGINE_FLATVOLATILITYSURFACE_HPP
|
||||
#define QUANTENGINE_FLATVOLATILITYSURFACE_HPP
|
||||
#include "VolatilitySurface.hpp"
|
||||
|
||||
class FlatVolatilitySurface : public VolatilitySurface {
|
||||
double sigma(double K, double T) {return 0.2;}
|
||||
};
|
||||
#endif
|
||||
Reference in New Issue
Block a user