Giter Site home page Giter Site logo

alatios / econophysics_option-pricing Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 3.0 8.13 MB

Econophysics option pricing CUDA project developed for the Computational Methods in Physics course at UniMI.

License: GNU General Public License v3.0

Cuda 65.27% Shell 12.90% Makefile 6.46% Python 15.36%
cuda c-plus-plus python3 bash makefile option-pricing econophysics monte-carlo

econophysics_option-pricing's Introduction

Econophysics option pricing project "Orbison"

Econophysics option pricing CUDA project simulating evolutions of the underlying asset through a gaussian Monte Carlo approach. Computes European-style forward contracts, call/put plain vanilla and performance corridor options with given time to maturity and key parameters. Includes sample Bash and Python 3 scripts for parameter analysis automation.

Tree structure

econophysics_option-pricing/
├── LICENSE
├── README.md
├── analysis_scripts
│   ├── ComputationTimeStudies_Tesla_AnalyzeResults.py
│   ├── ComputationTimeStudies_Tesla_GatherResults.sh
│   ├── ComputationTimeStudies_Tesla_RunSimulations.sh
│   ├── CorrelationTests_AnalyzeResults.py
│   ├── CorrelationTests_ProcessAndGatherResults.sh
│   ├── GainFactor_AnalyzeResults.py
│   ├── GainFactor_GatherResults.sh
│   ├── GainFactor_RunSimulations.sh
│   ├── InfiniteIntervals_GatherResults.sh
│   ├── InfiniteIntervals_RunSimulations.sh
│   ├── NegativePrices_AnalyzeResults.py
│   ├── NegativePrices_GatherResults.sh
│   ├── NegativePrices_RunSimulations.sh
│   ├── OptionPriceBimodal_AnalyzeResults.py
│   ├── OptionPriceBimodal_GatherResults.sh
│   ├── OptionPriceBimodal_RunSimulations.sh
│   ├── OptionPriceVsB_AnalyzeResults.py
│   ├── OptionPriceVsB_GatherResults.sh
│   ├── OptionPriceVsB_RunSimulations.sh
│   ├── OptionPriceVsM_AnalyzeResults.py
│   ├── OptionPriceVsM_GatherResults.sh
│   └── OptionPriceVsM_RunSimulations.sh
├── input.dat
├── input.dat.template
├── inputs
│   ├── ComputationTimeStudies_Tesla
│   ├── GainFactor_Tesla
│   ├── InfiniteIntervals
│   ├── NegativePrices
│   ├── OptionPriceBimodal
│   ├── OptionPriceVsB
│   └── OptionPriceVsM
├── libraries
│   ├── CoreLibraries
│   │   ├── DataStreamManager
│   │   │   ├── Data_stream_manager.cu
│   │   │   ├── Data_stream_manager.cuh
│   │   │   ├── UnitTest.cu
│   │   │   ├── input.dat
│   │   │   └── makefile
│   │   ├── Path
│   │   │   ├── BlackScholesUnitTest.cu
│   │   │   ├── Path.cu
│   │   │   ├── Path.cuh
│   │   │   ├── UnitTest.cu
│   │   │   ├── clean.sh
│   │   │   ├── input.dat
│   │   │   └── makefile
│   │   ├── RandomGenerator
│   │   │   ├── CorrelationTest.cu
│   │   │   ├── CorrelationTests_Autocorrelations.dat
│   │   │   ├── CorrelationTests_InterstreamAutocorrelations.dat
│   │   │   ├── CorrelationTests_MainIntraStream.dat
│   │   │   ├── CorrelationTests_UnprocessedOutput.dat
│   │   │   ├── CorrelationToolbox.cu
│   │   │   ├── CorrelationToolbox.cuh
│   │   │   ├── OutputTest.cu
│   │   │   ├── RNG.cu
│   │   │   ├── RNG.cuh
│   │   │   ├── graphs
│   │   │   │   ├── CorrelationTests_GaussInterStreamAutocorrelationHistogram.pdf
│   │   │   │   ├── CorrelationTests_GaussInterStreamAutocorrelationVsOffset.pdf
│   │   │   │   ├── CorrelationTests_InterStreamCorrelations.pdf
│   │   │   │   ├── CorrelationTests_IntraStreamCorrelations.pdf
│   │   │   │   ├── CorrelationTests_KurtosisVsVariance.pdf
│   │   │   │   ├── CorrelationTests_UniAvgVsGaussAvg.pdf
│   │   │   │   ├── CorrelationTests_UniformInterStreamAutocorrelationHistogram.pdf
│   │   │   │   └── CorrelationTests_UniformInterStreamAutocorrelationVsOffset.pdf
│   │   │   └── makefile
│   │   ├── Statistics
│   │   │   ├── Statistics.cu
│   │   │   ├── Statistics.cuh
│   │   │   ├── UnitTest.cu
│   │   │   ├── clean.sh
│   │   │   └── makefile
│   │   └── SupportFunctions
│   │       ├── Support_functions.cu
│   │       └── Support_functions.cuh
│   ├── InputStructures
│   │   ├── InputGPUData
│   │   │   ├── Input_gpu_data.cu
│   │   │   ├── Input_gpu_data.cuh
│   │   │   ├── UnitTest.cu
│   │   │   ├── clean.sh
│   │   │   └── makefile
│   │   ├── InputMCData
│   │   │   ├── Input_MC_data.cu
│   │   │   ├── Input_MC_data.cuh
│   │   │   ├── UnitTest.cu
│   │   │   ├── clean.sh
│   │   │   └── makefile
│   │   ├── InputMarketData
│   │   │   ├── Input_market_data.cuh
│   │   │   ├── UnitTest.cu
│   │   │   ├── clean.sh
│   │   │   └── makefile
│   │   └── InputOptionData
│   │       ├── Input_option_data.cu
│   │       ├── Input_option_data.cuh
│   │       ├── UnitTest.cu
│   │       ├── clean.sh
│   │       └── makefile
│   ├── OutputStructures
│   │   └── OutputMCData
│   │       ├── Output_MC_data.cu
│   │       ├── Output_MC_data.cuh
│   │       ├── UnitTest.cu
│   │       ├── clean.sh
│   │       └── makefile
│   └── unit_test.sh
├── main.cu
├── makefile
├── outputs
│   ├── ComputationTimeStudies_Tesla
│   ├── CorrelationTests
│   ├── GainFactor_Tesla
│   ├── InfiniteIntervals
│   ├── NegativePrices
│   ├── OptionPriceBimodal
│   ├── OptionPriceVsB
│   └── OptionPriceVsM
└── schematics
    ├── RecapMainCuDiagram.drawio
    └── RecapMainCuDiagram.pdf

41 directories, 2447 files

econophysics_option-pricing's People

Contributors

alatios avatar elenascibona avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.