├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── HOWTO ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.how_to_make_a_release ├── README.md ├── TODO ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc ├── Makefile.am ├── Makefile.in ├── README ├── epsf.tex ├── fdl.texi ├── html │ ├── Makefile.am │ ├── Makefile.in │ └── images │ │ └── README ├── images │ ├── 1.png │ ├── 1.txt │ ├── 10.png │ ├── 10.txt │ ├── 11.png │ ├── 11.txt │ ├── 2.png │ ├── 2.txt │ ├── 3.png │ ├── 3.txt │ ├── 3Calls3Puts.png │ ├── 3Calls3Puts.txt │ ├── 4.png │ ├── 4.txt │ ├── 5.png │ ├── 5.txt │ ├── 6.png │ ├── 6.txt │ ├── 7.png │ ├── 7.txt │ ├── 8.png │ ├── 8.txt │ ├── 9.png │ ├── 9.txt │ ├── CNDDrop.png │ ├── CNDDrop.txt │ ├── CNDDropDown.png │ ├── CNDDropDown.txt │ ├── CUSTInput.png │ ├── CUSTInput.txt │ ├── Calendar.png │ ├── Calendar.txt │ ├── CalendarButton.png │ ├── CalendarButton.txt │ ├── CalendarSpread.png │ ├── CalendarSpread.txt │ ├── ConsoleCategories.png │ ├── ConsoleCategories.txt │ ├── ConsoleChain.png │ ├── ConsoleChain.txt │ ├── ConsoleFormat.png │ ├── ConsoleFormat.txt │ ├── ConsoleInputs.png │ ├── ConsoleInputs.txt │ ├── ConsoleSelect.png │ ├── ConsoleSelect.txt │ ├── ConsoleWelcome.png │ ├── ConsoleWelcome.txt │ ├── CouponEditor.png │ ├── CouponEditor.txt │ ├── CycleClosed.png │ ├── CycleClosed.txt │ ├── CycleDropOpen.png │ ├── CycleDropOpen.txt │ ├── DateEngine.png │ ├── DateEngine.txt │ ├── DateEngineProperties.png │ ├── DateEngineProperties.txt │ ├── DateEngineSelected.png │ ├── DateEngineSelected.txt │ ├── DisplayFormats.png │ ├── DisplayFormats.txt │ ├── Export.png │ ├── Export.txt │ ├── Greeks.png │ ├── Greeks.txt │ ├── Leg1.png │ ├── Leg1.txt │ ├── Leg1Leg2.png │ ├── Leg1Leg2.txt │ ├── LegControls.png │ ├── LegControls.txt │ ├── ModelByAuthor.png │ ├── ModelByAuthor.txt │ ├── ModelDropDownOpen.png │ ├── ModelDropDownOpen.txt │ ├── ModelsList.png │ ├── ModelsList.txt │ ├── MonthAdjuster.png │ ├── MonthAdjuster.txt │ ├── MonthToStrikes.png │ ├── MonthToStrikes.txt │ ├── MonthsAcross.png │ ├── MonthsAcross.txt │ ├── MonthsToStrike.png │ ├── MonthsToStrike.txt │ ├── OptionMatrix.png │ ├── OptionMatrix.txt │ ├── OptionMatrixCalendarDated.png │ ├── OptionMatrixCalendarDated.txt │ ├── OptionMatrixSpreads.png │ ├── OptionMatrixSpreads.txt │ ├── OptionMatrixWin1.png │ ├── OptionMatrixWin1.txt │ ├── Precision.png │ ├── Precision.txt │ ├── PrefsSettings.png │ ├── PrefsSettings.txt │ ├── PriceInterestStandard.png │ ├── PriceInterestStandard.txt │ ├── RealTime.png │ ├── RealTime.txt │ ├── SleepDelay.png │ ├── SleepDelay.txt │ ├── SpreadCheckbox.png │ ├── SpreadCheckbox.txt │ ├── SpreadLegs.png │ ├── SpreadLegs.txt │ ├── SpreadsCCPPCPPC.png │ ├── SpreadsCCPPCPPC.txt │ ├── StrikeDropDownAndAdjuster.png │ ├── StrikeDropDownAndAdjuster.txt │ ├── Strikes.png │ ├── Strikes.txt │ ├── StrikesDrop.png │ ├── StrikesDrop.txt │ ├── Time.png │ ├── Time.txt │ ├── UseDateEngine.png │ ├── UseDateEngine.txt │ ├── download.png │ ├── favicon.ico │ ├── icon_optionmatrix128x128.png │ ├── icon_optionmatrix256x256.png │ ├── icon_optionmatrix32x32.png │ ├── icon_optionmatrix48x48.png │ └── icon_optionmatrix64x64.png ├── mdate-sh ├── optionmatrix.info ├── optionmatrix.pdf ├── optionmatrix.texi ├── stamp-vti ├── texinfo.tex └── version.texi ├── icons ├── 128x128 │ ├── optionmatrix.png │ └── optionmatrix_console.png ├── 256x256 │ ├── optionmatrix.png │ └── optionmatrix_console.png ├── 32x32 │ ├── optionmatrix.png │ ├── optionmatrix.xpm │ ├── optionmatrix_console.png │ └── optionmatrix_console.xpm ├── 48x48 │ ├── optionmatrix.png │ └── optionmatrix_console.png ├── 64x64 │ ├── optionmatrix.png │ └── optionmatrix_console.png ├── OptionMatrix.png ├── mac │ ├── README │ └── optionmatrix.icns ├── optionmatrix.desktop ├── optionmatrix_console.desktop └── windows │ ├── C++.ico │ ├── HTMLhelper.ico │ ├── README │ ├── Tests.ico │ ├── Website.ico │ ├── information.ico │ ├── installer.ico │ ├── optionmatrix.ico │ ├── optionmatrixdos.ico │ └── pdf.ico ├── install-sh ├── make_builds.sh ├── make_tests.sh ├── make_tests_quantlib.sh ├── man ├── Makefile.am └── Makefile.in ├── missing ├── src ├── README ├── common │ ├── Makefile.am │ ├── Makefile.in │ ├── QuantLib.h │ ├── README │ ├── args.cpp │ ├── checks.cpp │ ├── cumulative_norm.cpp │ ├── defaults.cpp │ ├── defs.h │ ├── distributions.cpp │ ├── environment.h │ ├── extern.h │ ├── finrecipes.h │ ├── futures.cpp │ ├── greeks.cpp │ ├── license.h │ ├── logger.cpp │ ├── main.h │ ├── metaoptions.h │ ├── misc.h │ ├── options_calls.cpp │ ├── options_puts.cpp │ ├── prototypes.h │ ├── sanity.cpp │ ├── termstructure.cpp │ ├── test.h │ ├── tickers.cpp │ └── time.cpp ├── curses │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── curses_calendar.cpp │ ├── curses_demo.cpp │ ├── curses_display.cpp │ ├── curses_include.h │ ├── curses_inputs.cpp │ ├── curses_main.cpp │ ├── curses_misc.cpp │ ├── curses_process.cpp │ └── curses_prop.cpp ├── gtk │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── gtk_bonds.cpp │ ├── gtk_calendar.cpp │ ├── gtk_cashflow.cpp │ ├── gtk_checkbutton.cpp │ ├── gtk_combobox.cpp │ ├── gtk_dialog.cpp │ ├── gtk_display.cpp │ ├── gtk_extern.h │ ├── gtk_glade_xml.glade │ ├── gtk_glade_xml.h │ ├── gtk_icon.h │ ├── gtk_include.h │ ├── gtk_main.cpp │ ├── gtk_main.h │ ├── gtk_menu.cpp │ ├── gtk_radio.cpp │ ├── gtk_scale.cpp │ ├── gtk_spin.cpp │ ├── gtk_thread.cpp │ └── images │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png └── models │ ├── abradford │ ├── Makefile.am │ ├── Makefile.in │ ├── basicmodels.h │ ├── black_76.cpp │ ├── black_scholes.cpp │ ├── delta.cpp │ ├── future.cpp │ ├── merton_73.cpp │ └── pre-BSM.cpp │ ├── financialrecipes │ ├── AUTHORS │ ├── ChangeLog │ ├── README │ ├── examples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── examples_alternative_formulas.cc │ │ ├── examples_approximations.cc │ │ ├── examples_average_and_lookback_options.cc │ │ ├── examples_binomial.cc │ │ ├── examples_binomial_approximations.cc │ │ ├── examples_binomial_term_structure_models.cc │ │ ├── examples_black_scholes.cc │ │ ├── examples_black_scholes_extensions.cc │ │ ├── examples_bond_flat_term_structure.cc │ │ ├── examples_bond_options.cc │ │ ├── examples_credit_risk.cc │ │ ├── examples_finite_differences.cc │ │ ├── examples_forwards_futures.cc │ │ ├── examples_generic_binomial.cc │ │ ├── examples_implicit_finite_diff_itpp.cc │ │ ├── examples_implicit_finite_diff_newmat.cc │ │ ├── examples_interest_rate_trees_gbm.cc │ │ ├── examples_interest_rate_trees_ho_lee.cc │ │ ├── examples_mean_variance_cxx_itpp.cc │ │ ├── examples_mean_variance_cxx_newmat.cc │ │ ├── examples_normal_distribution.cc │ │ ├── examples_present_value.cc │ │ ├── examples_simulation.cc │ │ ├── examples_term_structure.cc │ │ ├── examples_term_structure_derivatives.cc │ │ ├── examples_term_structure_model.cc │ │ ├── examples_trinomial.cc │ │ ├── examples_warrants.cc │ │ ├── prototypes.h │ │ └── run_all_examples.cc │ └── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── N3.cc │ │ ├── anal_price_am_call_div.cc │ │ ├── approx_am_call.cc │ │ ├── approx_am_put.cc │ │ ├── approx_am_put_geske_johnson.cc │ │ ├── approx_am_put_johnson.cc │ │ ├── bermudan_call_option.cc │ │ ├── bermudan_put_option.cc │ │ ├── bin_am_call.cc │ │ ├── bin_am_call_payout.cc │ │ ├── bin_am_delta_call.cc │ │ ├── bin_am_delta_put.cc │ │ ├── bin_am_div_call.cc │ │ ├── bin_am_div_put.cc │ │ ├── bin_am_partials_call.cc │ │ ├── bin_am_partials_put.cc │ │ ├── bin_am_prop_div_call.cc │ │ ├── bin_am_prop_div_put.cc │ │ ├── bin_am_put.cc │ │ ├── bin_am_put_payout.cc │ │ ├── bin_eur_call.cc │ │ ├── bin_eur_call_ud.cc │ │ ├── bin_eur_call_ud_one.cc │ │ ├── bin_eur_put.cc │ │ ├── binomial_generic.cc │ │ ├── binomial_generic_delta.cc │ │ ├── binomial_tree_ud.cc │ │ ├── black_scholes_call.cc │ │ ├── black_scholes_call_div.cc │ │ ├── black_scholes_delta_call.cc │ │ ├── black_scholes_delta_put.cc │ │ ├── black_scholes_imp_vol_bisect.cc │ │ ├── black_scholes_imp_vol_newt.cc │ │ ├── black_scholes_partials_call.cc │ │ ├── black_scholes_partials_put.cc │ │ ├── black_scholes_price_payout_call.cc │ │ ├── black_scholes_price_payout_put.cc │ │ ├── black_scholes_put.cc │ │ ├── black_scholes_put_div.cc │ │ ├── bondopt_call_binom_am.cc │ │ ├── bondopt_call_bs.cc │ │ ├── bondopt_call_coupon_bs.cc │ │ ├── bondopt_call_rend_bart.cc │ │ ├── bondopt_call_vasicek.cc │ │ ├── bondopt_put_binom_am.cc │ │ ├── bondopt_put_bs.cc │ │ ├── bondopt_put_coupon_bs.cc │ │ ├── bondopt_put_vasicek.cc │ │ ├── bonds_convexity.cc │ │ ├── bonds_convexity_discrete.cc │ │ ├── bonds_convexity_termstru.cc │ │ ├── bonds_duration.cc │ │ ├── bonds_duration_discrete.cc │ │ ├── bonds_duration_macaulay.cc │ │ ├── bonds_duration_macaulay_discrete.cc │ │ ├── bonds_duration_modified.cc │ │ ├── bonds_duration_termstru.cc │ │ ├── bonds_price.cc │ │ ├── bonds_price_both.cc │ │ ├── bonds_price_discrete.cc │ │ ├── bonds_price_termstru.cc │ │ ├── bonds_yield.cc │ │ ├── bonds_yield_discrete.cc │ │ ├── cflow_irr.cc │ │ ├── cflow_irr_discrete.cc │ │ ├── cflow_irr_test_unique.cc │ │ ├── cflow_pv.cc │ │ ├── cflow_pv_discrete.cc │ │ ├── cum_normal.cc │ │ ├── cum_normal_bivariate.cc │ │ ├── currency_opt_bin_call.cc │ │ ├── currency_opt_bin_put.cc │ │ ├── currency_opt_euro_call.cc │ │ ├── currency_opt_euro_put.cc │ │ ├── exotics_asian_price_call.cc │ │ ├── exotics_lookback_call.cc │ │ ├── exotics_lookback_put.cc │ │ ├── fin_recipes.h │ │ ├── fin_recipes_extra.h │ │ ├── fin_recipes_gsl.h │ │ ├── fin_recipes_itpp.h │ │ ├── fin_recipes_newmat.h │ │ ├── findiff_exp_am_call.cc │ │ ├── findiff_exp_am_put.cc │ │ ├── findiff_exp_eur_call.cc │ │ ├── findiff_exp_eur_put.cc │ │ ├── findiff_imp_am_call_newmat.cc │ │ ├── findiff_imp_am_put_itpp.cc │ │ ├── findiff_imp_am_put_newmat.cc │ │ ├── findiff_imp_eur_call_newmat.cc │ │ ├── findiff_imp_eur_put_newmat.cc │ │ ├── futures_opt_call_bin.cc │ │ ├── futures_opt_call_black.cc │ │ ├── futures_opt_put_bin.cc │ │ ├── futures_opt_put_black.cc │ │ ├── futures_price.cc │ │ ├── heston_price.cc │ │ ├── interest_rate_trees_gbm_build.cc │ │ ├── interest_rate_trees_gbm_value_of_callable.cc │ │ ├── interest_rate_trees_gbm_value_of_cashflows.cc │ │ ├── merton_jump_diff_call.cc │ │ ├── mv_calc_itpp.cc │ │ ├── mv_calc_newmat.cc │ │ ├── mv_calc_port_unconstrained_itpp.cc │ │ ├── mv_calc_port_unconstrained_newmat.cc │ │ ├── normdist.cc │ │ ├── normdist.h │ │ ├── opt_price_trinom_am_call.cc │ │ ├── opt_price_trinom_am_put.cc │ │ ├── option_price_american_perpetual_call.cc │ │ ├── option_price_american_perpetual_put.cc │ │ ├── payoff_average.cc │ │ ├── payoff_binary_options.cc │ │ ├── payoff_binary_put_call.cc │ │ ├── payoff_black_scholes_case.cc │ │ ├── payoff_lookback.cc │ │ ├── random_normal.cc │ │ ├── random_uniform.cc │ │ ├── sim_euro_opt_generic_routine_price_sequence_control_variate.cc │ │ ├── simulate_european_options_generic_routine.cc │ │ ├── simulate_european_options_generic_routine_antithetic_variate.cc │ │ ├── simulate_european_options_generic_routine_control_variate.cc │ │ ├── simulate_european_options_generic_routine_price_sequence.cc │ │ ├── simulate_lognormal_variable.cc │ │ ├── simulate_lognormally_distributed_sequence.cc │ │ ├── simulated_call_euro.cc │ │ ├── simulated_delta_call.cc │ │ ├── simulated_delta_put.cc │ │ ├── simulated_put_euro.cc │ │ ├── term_structure_class.cc │ │ ├── term_structure_class.h │ │ ├── term_structure_class_cir.cc │ │ ├── term_structure_class_cubic_spline.cc │ │ ├── term_structure_class_flat.cc │ │ ├── term_structure_class_flat.h │ │ ├── term_structure_class_ho_lee.cc │ │ ├── term_structure_class_ho_lee_build_tree.cc │ │ ├── term_structure_class_ho_lee_calc.cc │ │ ├── term_structure_class_ho_lee_price_bond_option.cc │ │ ├── term_structure_class_interpolated.cc │ │ ├── term_structure_class_interpolated.h │ │ ├── term_structure_class_nelson_siegel.cc │ │ ├── term_structure_class_svensson.cc │ │ ├── term_structure_class_svensson.h │ │ ├── term_structure_class_vasicek.cc │ │ ├── termstru_discfact_cir.cc │ │ ├── termstru_discfact_cubic_spline.cc │ │ ├── termstru_discfact_vasicek.cc │ │ ├── termstru_transforms.cc │ │ ├── termstru_yield_interpolated.cc │ │ ├── termstru_yield_nels_sie.cc │ │ ├── termstru_yield_svensson.cc │ │ ├── warrant_price_black_scholes.cc │ │ └── warrant_price_black_scholes_dividends.cc │ ├── metaoptions │ ├── AUTHORS │ ├── ChangeLog │ ├── src │ │ ├── AmericanExchangeOption.c │ │ ├── AssetOrNothing.c │ │ ├── BAWAmericanApprox.c │ │ ├── BAWbisection.c │ │ ├── BSAmericanApprox.c │ │ ├── BSbisection.c │ │ ├── BarrierBinominal.c │ │ ├── BinaryBarrier.c │ │ ├── CRRBinominal.c │ │ ├── CashOrNothing.c │ │ ├── ComplexChooser.c │ │ ├── ConvertibleBond.c │ │ ├── DiscreteAdjustedBarrier.c │ │ ├── DoubleBarrier.c │ │ ├── EquityLinkedFXO.c │ │ ├── EuropeanExchangeOption.c │ │ ├── ExchangeExchangeOption.c │ │ ├── Executive.c │ │ ├── ExtendibleWriter.c │ │ ├── ExtremeSpreadOption.c │ │ ├── FixedStrikeLookback.c │ │ ├── FloatingStrikeLookback.c │ │ ├── ForEquOptInDomCur.c │ │ ├── ForwardStartOption.c │ │ ├── GapOption.c │ │ ├── GarmanKohlhagen.c │ │ ├── GeometricAverageRateOption.c │ │ ├── JumpDiffusion.c │ │ ├── LevyAsian.c │ │ ├── LookBarrier.c │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── MiltersenSwartz.c │ │ ├── NewtonRaphson.c │ │ ├── OptionsOnOptions.c │ │ ├── OptionsOnTheMaxMin.c │ │ ├── PartialFixedLB.c │ │ ├── PartialFloatLB.c │ │ ├── PartialTimeBarrier.c │ │ ├── PartialTimeTwoAssetBarrier.c │ │ ├── Quanto.c │ │ ├── RollGeskeWhaley.c │ │ ├── SimpleChooser.c │ │ ├── SoftBarrier.c │ │ ├── SpreadApproximation.c │ │ ├── StandardBarrier.c │ │ ├── SuperShare.c │ │ ├── Swapoption.c │ │ ├── TakeoverFXoption.c │ │ ├── ThreeDimensionalBinominal.c │ │ ├── TimeSwitchOption.c │ │ ├── TrinominalTree.c │ │ ├── TurnbullWakemanAsian.c │ │ ├── TwoAssetBarrier.c │ │ ├── TwoAssetCashOrNothing.c │ │ ├── TwoAssetCorrelation.c │ │ ├── VasicekBondOption.c │ │ ├── VasicekBondPrice.c │ │ ├── bisection.c │ │ ├── black76.c │ │ ├── blackscholes.c │ │ ├── cbnd.c │ │ ├── check_options.c │ │ ├── cnd.c │ │ ├── gbs.c │ │ ├── gcarry.c │ │ ├── gdelta.c │ │ ├── gfrench.c │ │ ├── ggamma.c │ │ ├── grho.c │ │ ├── gtheta.c │ │ ├── gvega.c │ │ ├── merton73.c │ │ └── metaoptions.h │ └── tests │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── TESTSUITE.README │ └── spinsky │ ├── Makefile.am │ ├── Makefile.in │ ├── binomial.cpp │ └── binomial.h ├── test-driver └── utils ├── README ├── apt-get.sh ├── dnf.sh ├── tab.sh ├── yum.sh └── zypper.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/ChangeLog -------------------------------------------------------------------------------- /HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/HOWTO -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/README -------------------------------------------------------------------------------- /README.how_to_make_a_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/README.how_to_make_a_release -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | * Build with GTK version 4. -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/depcomp -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/Makefile.in -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/README -------------------------------------------------------------------------------- /doc/epsf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/epsf.tex -------------------------------------------------------------------------------- /doc/fdl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/fdl.texi -------------------------------------------------------------------------------- /doc/html/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/html/Makefile.am -------------------------------------------------------------------------------- /doc/html/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/html/Makefile.in -------------------------------------------------------------------------------- /doc/html/images/README: -------------------------------------------------------------------------------- 1 | HTML images will be copied here from ../../Makefile.am 2 | -------------------------------------------------------------------------------- /doc/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/1.png -------------------------------------------------------------------------------- /doc/images/1.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix icon 2 | -------------------------------------------------------------------------------- /doc/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/10.png -------------------------------------------------------------------------------- /doc/images/10.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix icon 2 | -------------------------------------------------------------------------------- /doc/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/11.png -------------------------------------------------------------------------------- /doc/images/11.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix icon 2 | -------------------------------------------------------------------------------- /doc/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/2.png -------------------------------------------------------------------------------- /doc/images/2.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix icon 2 | -------------------------------------------------------------------------------- /doc/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/3.png -------------------------------------------------------------------------------- /doc/images/3.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix icon 2 | -------------------------------------------------------------------------------- /doc/images/3Calls3Puts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/3Calls3Puts.png -------------------------------------------------------------------------------- /doc/images/3Calls3Puts.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/4.png -------------------------------------------------------------------------------- /doc/images/4.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix icon 2 | -------------------------------------------------------------------------------- /doc/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/5.png -------------------------------------------------------------------------------- /doc/images/5.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix icon 2 | -------------------------------------------------------------------------------- /doc/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/6.png -------------------------------------------------------------------------------- /doc/images/6.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix icon 2 | -------------------------------------------------------------------------------- /doc/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/7.png -------------------------------------------------------------------------------- /doc/images/7.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix icon 2 | -------------------------------------------------------------------------------- /doc/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/8.png -------------------------------------------------------------------------------- /doc/images/8.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix icon 2 | -------------------------------------------------------------------------------- /doc/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/9.png -------------------------------------------------------------------------------- /doc/images/9.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix icon 2 | -------------------------------------------------------------------------------- /doc/images/CNDDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/CNDDrop.png -------------------------------------------------------------------------------- /doc/images/CNDDrop.txt: -------------------------------------------------------------------------------- 1 | Image of CND drop down selector 2 | -------------------------------------------------------------------------------- /doc/images/CNDDropDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/CNDDropDown.png -------------------------------------------------------------------------------- /doc/images/CNDDropDown.txt: -------------------------------------------------------------------------------- 1 | Image of CND drop down selector items 2 | -------------------------------------------------------------------------------- /doc/images/CUSTInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/CUSTInput.png -------------------------------------------------------------------------------- /doc/images/CUSTInput.txt: -------------------------------------------------------------------------------- 1 | Image of Custom Strike selector and input 2 | -------------------------------------------------------------------------------- /doc/images/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/Calendar.png -------------------------------------------------------------------------------- /doc/images/Calendar.txt: -------------------------------------------------------------------------------- 1 | Image of Calendar popup selector 2 | -------------------------------------------------------------------------------- /doc/images/CalendarButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/CalendarButton.png -------------------------------------------------------------------------------- /doc/images/CalendarButton.txt: -------------------------------------------------------------------------------- 1 | Image of Calendar push button 2 | -------------------------------------------------------------------------------- /doc/images/CalendarSpread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/CalendarSpread.png -------------------------------------------------------------------------------- /doc/images/CalendarSpread.txt: -------------------------------------------------------------------------------- 1 | Image of Calendar Spread indicator text 2 | -------------------------------------------------------------------------------- /doc/images/ConsoleCategories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleCategories.png -------------------------------------------------------------------------------- /doc/images/ConsoleCategories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleCategories.txt -------------------------------------------------------------------------------- /doc/images/ConsoleChain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleChain.png -------------------------------------------------------------------------------- /doc/images/ConsoleChain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleChain.txt -------------------------------------------------------------------------------- /doc/images/ConsoleFormat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleFormat.png -------------------------------------------------------------------------------- /doc/images/ConsoleFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleFormat.txt -------------------------------------------------------------------------------- /doc/images/ConsoleInputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleInputs.png -------------------------------------------------------------------------------- /doc/images/ConsoleInputs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleInputs.txt -------------------------------------------------------------------------------- /doc/images/ConsoleSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleSelect.png -------------------------------------------------------------------------------- /doc/images/ConsoleSelect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleSelect.txt -------------------------------------------------------------------------------- /doc/images/ConsoleWelcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleWelcome.png -------------------------------------------------------------------------------- /doc/images/ConsoleWelcome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ConsoleWelcome.txt -------------------------------------------------------------------------------- /doc/images/CouponEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/CouponEditor.png -------------------------------------------------------------------------------- /doc/images/CouponEditor.txt: -------------------------------------------------------------------------------- 1 | Image of Coupon Editor popup 2 | -------------------------------------------------------------------------------- /doc/images/CycleClosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/CycleClosed.png -------------------------------------------------------------------------------- /doc/images/CycleClosed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/CycleClosed.txt -------------------------------------------------------------------------------- /doc/images/CycleDropOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/CycleDropOpen.png -------------------------------------------------------------------------------- /doc/images/CycleDropOpen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/CycleDropOpen.txt -------------------------------------------------------------------------------- /doc/images/DateEngine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/DateEngine.png -------------------------------------------------------------------------------- /doc/images/DateEngine.txt: -------------------------------------------------------------------------------- 1 | Image of Date Engine Properties popup 2 | -------------------------------------------------------------------------------- /doc/images/DateEngineProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/DateEngineProperties.png -------------------------------------------------------------------------------- /doc/images/DateEngineProperties.txt: -------------------------------------------------------------------------------- 1 | Image of Date Engine Properties push button 2 | -------------------------------------------------------------------------------- /doc/images/DateEngineSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/DateEngineSelected.png -------------------------------------------------------------------------------- /doc/images/DateEngineSelected.txt: -------------------------------------------------------------------------------- 1 | Image of Use Date Engine checkbox 2 | -------------------------------------------------------------------------------- /doc/images/DisplayFormats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/DisplayFormats.png -------------------------------------------------------------------------------- /doc/images/DisplayFormats.txt: -------------------------------------------------------------------------------- 1 | Image of Display Formats radio selection buttons 2 | -------------------------------------------------------------------------------- /doc/images/Export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/Export.png -------------------------------------------------------------------------------- /doc/images/Export.txt: -------------------------------------------------------------------------------- 1 | Image of File -> Text Export menu item 2 | -------------------------------------------------------------------------------- /doc/images/Greeks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/Greeks.png -------------------------------------------------------------------------------- /doc/images/Greeks.txt: -------------------------------------------------------------------------------- 1 | Image of Greek analytics columns 2 | -------------------------------------------------------------------------------- /doc/images/Leg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/Leg1.png -------------------------------------------------------------------------------- /doc/images/Leg1.txt: -------------------------------------------------------------------------------- 1 | Image of Leg1 columns 2 | -------------------------------------------------------------------------------- /doc/images/Leg1Leg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/Leg1Leg2.png -------------------------------------------------------------------------------- /doc/images/Leg1Leg2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/Leg1Leg2.txt -------------------------------------------------------------------------------- /doc/images/LegControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/LegControls.png -------------------------------------------------------------------------------- /doc/images/LegControls.txt: -------------------------------------------------------------------------------- 1 | Image of Leg scale controllers 2 | -------------------------------------------------------------------------------- /doc/images/ModelByAuthor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ModelByAuthor.png -------------------------------------------------------------------------------- /doc/images/ModelByAuthor.txt: -------------------------------------------------------------------------------- 1 | Image of combobox Models by Author 2 | -------------------------------------------------------------------------------- /doc/images/ModelDropDownOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ModelDropDownOpen.png -------------------------------------------------------------------------------- /doc/images/ModelDropDownOpen.txt: -------------------------------------------------------------------------------- 1 | Image of combobox categorized models 2 | -------------------------------------------------------------------------------- /doc/images/ModelsList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/ModelsList.png -------------------------------------------------------------------------------- /doc/images/ModelsList.txt: -------------------------------------------------------------------------------- 1 | Image of menu Models listing control 2 | -------------------------------------------------------------------------------- /doc/images/MonthAdjuster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/MonthAdjuster.png -------------------------------------------------------------------------------- /doc/images/MonthAdjuster.txt: -------------------------------------------------------------------------------- 1 | Image of Month Adjust scale selector 2 | -------------------------------------------------------------------------------- /doc/images/MonthToStrikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/MonthToStrikes.png -------------------------------------------------------------------------------- /doc/images/MonthToStrikes.txt: -------------------------------------------------------------------------------- 1 | Image of Month to Strikes display format 2 | -------------------------------------------------------------------------------- /doc/images/MonthsAcross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/MonthsAcross.png -------------------------------------------------------------------------------- /doc/images/MonthsAcross.txt: -------------------------------------------------------------------------------- 1 | Image of Months Across display format 2 | -------------------------------------------------------------------------------- /doc/images/MonthsToStrike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/MonthsToStrike.png -------------------------------------------------------------------------------- /doc/images/MonthsToStrike.txt: -------------------------------------------------------------------------------- 1 | Image of Months to Strike display format 2 | -------------------------------------------------------------------------------- /doc/images/OptionMatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/OptionMatrix.png -------------------------------------------------------------------------------- /doc/images/OptionMatrix.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix program 2 | -------------------------------------------------------------------------------- /doc/images/OptionMatrixCalendarDated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/OptionMatrixCalendarDated.png -------------------------------------------------------------------------------- /doc/images/OptionMatrixCalendarDated.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix program in calendar dated mode 2 | -------------------------------------------------------------------------------- /doc/images/OptionMatrixSpreads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/OptionMatrixSpreads.png -------------------------------------------------------------------------------- /doc/images/OptionMatrixSpreads.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix program in spread mode 2 | -------------------------------------------------------------------------------- /doc/images/OptionMatrixWin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/OptionMatrixWin1.png -------------------------------------------------------------------------------- /doc/images/OptionMatrixWin1.txt: -------------------------------------------------------------------------------- 1 | Image of OptionMatrix program 2 | -------------------------------------------------------------------------------- /doc/images/Precision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/Precision.png -------------------------------------------------------------------------------- /doc/images/Precision.txt: -------------------------------------------------------------------------------- 1 | Image of decimal Precision control spin button 2 | -------------------------------------------------------------------------------- /doc/images/PrefsSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/PrefsSettings.png -------------------------------------------------------------------------------- /doc/images/PrefsSettings.txt: -------------------------------------------------------------------------------- 1 | Image of Menu Prefs -> Settings 2 | -------------------------------------------------------------------------------- /doc/images/PriceInterestStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/PriceInterestStandard.png -------------------------------------------------------------------------------- /doc/images/PriceInterestStandard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/PriceInterestStandard.txt -------------------------------------------------------------------------------- /doc/images/RealTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/RealTime.png -------------------------------------------------------------------------------- /doc/images/RealTime.txt: -------------------------------------------------------------------------------- 1 | Image of RealTime checkbox 2 | -------------------------------------------------------------------------------- /doc/images/SleepDelay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/SleepDelay.png -------------------------------------------------------------------------------- /doc/images/SleepDelay.txt: -------------------------------------------------------------------------------- 1 | Image of Sleep Delay popup 2 | -------------------------------------------------------------------------------- /doc/images/SpreadCheckbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/SpreadCheckbox.png -------------------------------------------------------------------------------- /doc/images/SpreadCheckbox.txt: -------------------------------------------------------------------------------- 1 | Image of Spread check box 2 | -------------------------------------------------------------------------------- /doc/images/SpreadLegs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/SpreadLegs.png -------------------------------------------------------------------------------- /doc/images/SpreadLegs.txt: -------------------------------------------------------------------------------- 1 | Image of Spread Legs 2 | -------------------------------------------------------------------------------- /doc/images/SpreadsCCPPCPPC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/SpreadsCCPPCPPC.png -------------------------------------------------------------------------------- /doc/images/SpreadsCCPPCPPC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/SpreadsCCPPCPPC.txt -------------------------------------------------------------------------------- /doc/images/StrikeDropDownAndAdjuster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/StrikeDropDownAndAdjuster.png -------------------------------------------------------------------------------- /doc/images/StrikeDropDownAndAdjuster.txt: -------------------------------------------------------------------------------- 1 | Image of Strikes drop down and scale adjuster 2 | -------------------------------------------------------------------------------- /doc/images/Strikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/Strikes.png -------------------------------------------------------------------------------- /doc/images/Strikes.txt: -------------------------------------------------------------------------------- 1 | Image of Strikes drop down elements 2 | -------------------------------------------------------------------------------- /doc/images/StrikesDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/StrikesDrop.png -------------------------------------------------------------------------------- /doc/images/StrikesDrop.txt: -------------------------------------------------------------------------------- 1 | Image of Strikes drop down 2 | -------------------------------------------------------------------------------- /doc/images/Time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/Time.png -------------------------------------------------------------------------------- /doc/images/Time.txt: -------------------------------------------------------------------------------- 1 | Image of time controls 2 | -------------------------------------------------------------------------------- /doc/images/UseDateEngine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/UseDateEngine.png -------------------------------------------------------------------------------- /doc/images/UseDateEngine.txt: -------------------------------------------------------------------------------- 1 | Image of Use Date Engine checkbox 2 | -------------------------------------------------------------------------------- /doc/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/download.png -------------------------------------------------------------------------------- /doc/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/favicon.ico -------------------------------------------------------------------------------- /doc/images/icon_optionmatrix128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/icon_optionmatrix128x128.png -------------------------------------------------------------------------------- /doc/images/icon_optionmatrix256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/icon_optionmatrix256x256.png -------------------------------------------------------------------------------- /doc/images/icon_optionmatrix32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/icon_optionmatrix32x32.png -------------------------------------------------------------------------------- /doc/images/icon_optionmatrix48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/icon_optionmatrix48x48.png -------------------------------------------------------------------------------- /doc/images/icon_optionmatrix64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/images/icon_optionmatrix64x64.png -------------------------------------------------------------------------------- /doc/mdate-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/mdate-sh -------------------------------------------------------------------------------- /doc/optionmatrix.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/optionmatrix.info -------------------------------------------------------------------------------- /doc/optionmatrix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/optionmatrix.pdf -------------------------------------------------------------------------------- /doc/optionmatrix.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/optionmatrix.texi -------------------------------------------------------------------------------- /doc/stamp-vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/stamp-vti -------------------------------------------------------------------------------- /doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/texinfo.tex -------------------------------------------------------------------------------- /doc/version.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/doc/version.texi -------------------------------------------------------------------------------- /icons/128x128/optionmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/128x128/optionmatrix.png -------------------------------------------------------------------------------- /icons/128x128/optionmatrix_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/128x128/optionmatrix_console.png -------------------------------------------------------------------------------- /icons/256x256/optionmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/256x256/optionmatrix.png -------------------------------------------------------------------------------- /icons/256x256/optionmatrix_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/256x256/optionmatrix_console.png -------------------------------------------------------------------------------- /icons/32x32/optionmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/32x32/optionmatrix.png -------------------------------------------------------------------------------- /icons/32x32/optionmatrix.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/32x32/optionmatrix.xpm -------------------------------------------------------------------------------- /icons/32x32/optionmatrix_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/32x32/optionmatrix_console.png -------------------------------------------------------------------------------- /icons/32x32/optionmatrix_console.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/32x32/optionmatrix_console.xpm -------------------------------------------------------------------------------- /icons/48x48/optionmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/48x48/optionmatrix.png -------------------------------------------------------------------------------- /icons/48x48/optionmatrix_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/48x48/optionmatrix_console.png -------------------------------------------------------------------------------- /icons/64x64/optionmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/64x64/optionmatrix.png -------------------------------------------------------------------------------- /icons/64x64/optionmatrix_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/64x64/optionmatrix_console.png -------------------------------------------------------------------------------- /icons/OptionMatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/OptionMatrix.png -------------------------------------------------------------------------------- /icons/mac/README: -------------------------------------------------------------------------------- 1 | optionmatrix.icns icon for Mac OS X Bundle. -------------------------------------------------------------------------------- /icons/mac/optionmatrix.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/mac/optionmatrix.icns -------------------------------------------------------------------------------- /icons/optionmatrix.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/optionmatrix.desktop -------------------------------------------------------------------------------- /icons/optionmatrix_console.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/optionmatrix_console.desktop -------------------------------------------------------------------------------- /icons/windows/C++.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/windows/C++.ico -------------------------------------------------------------------------------- /icons/windows/HTMLhelper.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/windows/HTMLhelper.ico -------------------------------------------------------------------------------- /icons/windows/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/windows/README -------------------------------------------------------------------------------- /icons/windows/Tests.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/windows/Tests.ico -------------------------------------------------------------------------------- /icons/windows/Website.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/windows/Website.ico -------------------------------------------------------------------------------- /icons/windows/information.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/windows/information.ico -------------------------------------------------------------------------------- /icons/windows/installer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/windows/installer.ico -------------------------------------------------------------------------------- /icons/windows/optionmatrix.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/windows/optionmatrix.ico -------------------------------------------------------------------------------- /icons/windows/optionmatrixdos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/windows/optionmatrixdos.ico -------------------------------------------------------------------------------- /icons/windows/pdf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/icons/windows/pdf.ico -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/install-sh -------------------------------------------------------------------------------- /make_builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/make_builds.sh -------------------------------------------------------------------------------- /make_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/make_tests.sh -------------------------------------------------------------------------------- /make_tests_quantlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/make_tests_quantlib.sh -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/man/Makefile.in -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/missing -------------------------------------------------------------------------------- /src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/README -------------------------------------------------------------------------------- /src/common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/Makefile.am -------------------------------------------------------------------------------- /src/common/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/Makefile.in -------------------------------------------------------------------------------- /src/common/QuantLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/QuantLib.h -------------------------------------------------------------------------------- /src/common/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/README -------------------------------------------------------------------------------- /src/common/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/args.cpp -------------------------------------------------------------------------------- /src/common/checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/checks.cpp -------------------------------------------------------------------------------- /src/common/cumulative_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/cumulative_norm.cpp -------------------------------------------------------------------------------- /src/common/defaults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/defaults.cpp -------------------------------------------------------------------------------- /src/common/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/defs.h -------------------------------------------------------------------------------- /src/common/distributions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/distributions.cpp -------------------------------------------------------------------------------- /src/common/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/environment.h -------------------------------------------------------------------------------- /src/common/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/extern.h -------------------------------------------------------------------------------- /src/common/finrecipes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/finrecipes.h -------------------------------------------------------------------------------- /src/common/futures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/futures.cpp -------------------------------------------------------------------------------- /src/common/greeks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/greeks.cpp -------------------------------------------------------------------------------- /src/common/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/license.h -------------------------------------------------------------------------------- /src/common/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/logger.cpp -------------------------------------------------------------------------------- /src/common/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/main.h -------------------------------------------------------------------------------- /src/common/metaoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/metaoptions.h -------------------------------------------------------------------------------- /src/common/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/misc.h -------------------------------------------------------------------------------- /src/common/options_calls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/options_calls.cpp -------------------------------------------------------------------------------- /src/common/options_puts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/options_puts.cpp -------------------------------------------------------------------------------- /src/common/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/prototypes.h -------------------------------------------------------------------------------- /src/common/sanity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/sanity.cpp -------------------------------------------------------------------------------- /src/common/termstructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/termstructure.cpp -------------------------------------------------------------------------------- /src/common/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/test.h -------------------------------------------------------------------------------- /src/common/tickers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/tickers.cpp -------------------------------------------------------------------------------- /src/common/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/common/time.cpp -------------------------------------------------------------------------------- /src/curses/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/Makefile.am -------------------------------------------------------------------------------- /src/curses/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/Makefile.in -------------------------------------------------------------------------------- /src/curses/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/README -------------------------------------------------------------------------------- /src/curses/curses_calendar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/curses_calendar.cpp -------------------------------------------------------------------------------- /src/curses/curses_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/curses_demo.cpp -------------------------------------------------------------------------------- /src/curses/curses_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/curses_display.cpp -------------------------------------------------------------------------------- /src/curses/curses_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/curses_include.h -------------------------------------------------------------------------------- /src/curses/curses_inputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/curses_inputs.cpp -------------------------------------------------------------------------------- /src/curses/curses_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/curses_main.cpp -------------------------------------------------------------------------------- /src/curses/curses_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/curses_misc.cpp -------------------------------------------------------------------------------- /src/curses/curses_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/curses_process.cpp -------------------------------------------------------------------------------- /src/curses/curses_prop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/curses/curses_prop.cpp -------------------------------------------------------------------------------- /src/gtk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/Makefile.am -------------------------------------------------------------------------------- /src/gtk/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/Makefile.in -------------------------------------------------------------------------------- /src/gtk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/README -------------------------------------------------------------------------------- /src/gtk/gtk_bonds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_bonds.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_calendar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_calendar.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_cashflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_cashflow.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_checkbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_checkbutton.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_combobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_combobox.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_dialog.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_display.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_extern.h -------------------------------------------------------------------------------- /src/gtk/gtk_glade_xml.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_glade_xml.glade -------------------------------------------------------------------------------- /src/gtk/gtk_glade_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_glade_xml.h -------------------------------------------------------------------------------- /src/gtk/gtk_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_icon.h -------------------------------------------------------------------------------- /src/gtk/gtk_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_include.h -------------------------------------------------------------------------------- /src/gtk/gtk_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_main.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_main.h -------------------------------------------------------------------------------- /src/gtk/gtk_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_menu.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_radio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_radio.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_scale.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_spin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_spin.cpp -------------------------------------------------------------------------------- /src/gtk/gtk_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/gtk_thread.cpp -------------------------------------------------------------------------------- /src/gtk/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/1.png -------------------------------------------------------------------------------- /src/gtk/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/10.png -------------------------------------------------------------------------------- /src/gtk/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/11.png -------------------------------------------------------------------------------- /src/gtk/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/12.png -------------------------------------------------------------------------------- /src/gtk/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/13.png -------------------------------------------------------------------------------- /src/gtk/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/14.png -------------------------------------------------------------------------------- /src/gtk/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/2.png -------------------------------------------------------------------------------- /src/gtk/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/3.png -------------------------------------------------------------------------------- /src/gtk/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/4.png -------------------------------------------------------------------------------- /src/gtk/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/5.png -------------------------------------------------------------------------------- /src/gtk/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/6.png -------------------------------------------------------------------------------- /src/gtk/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/7.png -------------------------------------------------------------------------------- /src/gtk/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/8.png -------------------------------------------------------------------------------- /src/gtk/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/gtk/images/9.png -------------------------------------------------------------------------------- /src/models/abradford/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/abradford/Makefile.am -------------------------------------------------------------------------------- /src/models/abradford/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/abradford/Makefile.in -------------------------------------------------------------------------------- /src/models/abradford/basicmodels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/abradford/basicmodels.h -------------------------------------------------------------------------------- /src/models/abradford/black_76.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/abradford/black_76.cpp -------------------------------------------------------------------------------- /src/models/abradford/black_scholes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/abradford/black_scholes.cpp -------------------------------------------------------------------------------- /src/models/abradford/delta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/abradford/delta.cpp -------------------------------------------------------------------------------- /src/models/abradford/future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/abradford/future.cpp -------------------------------------------------------------------------------- /src/models/abradford/merton_73.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/abradford/merton_73.cpp -------------------------------------------------------------------------------- /src/models/abradford/pre-BSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/abradford/pre-BSM.cpp -------------------------------------------------------------------------------- /src/models/financialrecipes/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/AUTHORS -------------------------------------------------------------------------------- /src/models/financialrecipes/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/ChangeLog -------------------------------------------------------------------------------- /src/models/financialrecipes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/README -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/Makefile.am -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/Makefile.in -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_alternative_formulas.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_alternative_formulas.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_approximations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_approximations.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_average_and_lookback_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_average_and_lookback_options.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_binomial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_binomial.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_binomial_approximations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_binomial_approximations.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_binomial_term_structure_models.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_binomial_term_structure_models.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_black_scholes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_black_scholes.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_black_scholes_extensions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_black_scholes_extensions.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_bond_flat_term_structure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_bond_flat_term_structure.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_bond_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_bond_options.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_credit_risk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_credit_risk.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_finite_differences.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_finite_differences.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_forwards_futures.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_forwards_futures.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_generic_binomial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_generic_binomial.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_implicit_finite_diff_itpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_implicit_finite_diff_itpp.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_implicit_finite_diff_newmat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_implicit_finite_diff_newmat.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_interest_rate_trees_gbm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_interest_rate_trees_gbm.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_interest_rate_trees_ho_lee.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_interest_rate_trees_ho_lee.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_mean_variance_cxx_itpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_mean_variance_cxx_itpp.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_mean_variance_cxx_newmat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_mean_variance_cxx_newmat.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_normal_distribution.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_normal_distribution.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_present_value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_present_value.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_simulation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_simulation.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_term_structure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_term_structure.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_term_structure_derivatives.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_term_structure_derivatives.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_term_structure_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_term_structure_model.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_trinomial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_trinomial.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/examples_warrants.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/examples_warrants.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/prototypes.h -------------------------------------------------------------------------------- /src/models/financialrecipes/examples/run_all_examples.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/examples/run_all_examples.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/Makefile.am -------------------------------------------------------------------------------- /src/models/financialrecipes/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/Makefile.in -------------------------------------------------------------------------------- /src/models/financialrecipes/src/N3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/N3.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/anal_price_am_call_div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/anal_price_am_call_div.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/approx_am_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/approx_am_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/approx_am_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/approx_am_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/approx_am_put_geske_johnson.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/approx_am_put_geske_johnson.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/approx_am_put_johnson.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/approx_am_put_johnson.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bermudan_call_option.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bermudan_call_option.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bermudan_put_option.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bermudan_put_option.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_call_payout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_call_payout.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_delta_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_delta_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_delta_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_delta_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_div_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_div_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_div_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_div_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_partials_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_partials_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_partials_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_partials_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_prop_div_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_prop_div_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_prop_div_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_prop_div_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_am_put_payout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_am_put_payout.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_eur_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_eur_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_eur_call_ud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_eur_call_ud.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_eur_call_ud_one.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_eur_call_ud_one.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bin_eur_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bin_eur_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/binomial_generic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/binomial_generic.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/binomial_generic_delta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/binomial_generic_delta.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/binomial_tree_ud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/binomial_tree_ud.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_call_div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_call_div.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_delta_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_delta_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_delta_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_delta_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_imp_vol_bisect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_imp_vol_bisect.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_imp_vol_newt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_imp_vol_newt.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_partials_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_partials_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_partials_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_partials_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_price_payout_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_price_payout_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_price_payout_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_price_payout_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/black_scholes_put_div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/black_scholes_put_div.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bondopt_call_binom_am.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bondopt_call_binom_am.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bondopt_call_bs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bondopt_call_bs.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bondopt_call_coupon_bs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bondopt_call_coupon_bs.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bondopt_call_rend_bart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bondopt_call_rend_bart.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bondopt_call_vasicek.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bondopt_call_vasicek.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bondopt_put_binom_am.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bondopt_put_binom_am.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bondopt_put_bs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bondopt_put_bs.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bondopt_put_coupon_bs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bondopt_put_coupon_bs.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bondopt_put_vasicek.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bondopt_put_vasicek.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_convexity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_convexity.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_convexity_discrete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_convexity_discrete.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_convexity_termstru.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_convexity_termstru.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_duration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_duration.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_duration_discrete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_duration_discrete.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_duration_macaulay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_duration_macaulay.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_duration_macaulay_discrete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_duration_macaulay_discrete.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_duration_modified.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_duration_modified.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_duration_termstru.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_duration_termstru.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_price.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_price.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_price_both.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_price_both.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_price_discrete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_price_discrete.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_price_termstru.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_price_termstru.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_yield.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_yield.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/bonds_yield_discrete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/bonds_yield_discrete.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/cflow_irr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/cflow_irr.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/cflow_irr_discrete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/cflow_irr_discrete.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/cflow_irr_test_unique.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/cflow_irr_test_unique.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/cflow_pv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/cflow_pv.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/cflow_pv_discrete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/cflow_pv_discrete.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/cum_normal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/cum_normal.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/cum_normal_bivariate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/cum_normal_bivariate.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/currency_opt_bin_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/currency_opt_bin_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/currency_opt_bin_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/currency_opt_bin_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/currency_opt_euro_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/currency_opt_euro_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/currency_opt_euro_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/currency_opt_euro_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/exotics_asian_price_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/exotics_asian_price_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/exotics_lookback_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/exotics_lookback_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/exotics_lookback_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/exotics_lookback_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/fin_recipes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/fin_recipes.h -------------------------------------------------------------------------------- /src/models/financialrecipes/src/fin_recipes_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/fin_recipes_extra.h -------------------------------------------------------------------------------- /src/models/financialrecipes/src/fin_recipes_gsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/fin_recipes_gsl.h -------------------------------------------------------------------------------- /src/models/financialrecipes/src/fin_recipes_itpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/fin_recipes_itpp.h -------------------------------------------------------------------------------- /src/models/financialrecipes/src/fin_recipes_newmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/fin_recipes_newmat.h -------------------------------------------------------------------------------- /src/models/financialrecipes/src/findiff_exp_am_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/findiff_exp_am_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/findiff_exp_am_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/findiff_exp_am_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/findiff_exp_eur_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/findiff_exp_eur_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/findiff_exp_eur_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/findiff_exp_eur_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/findiff_imp_am_call_newmat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/findiff_imp_am_call_newmat.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/findiff_imp_am_put_itpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/findiff_imp_am_put_itpp.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/findiff_imp_am_put_newmat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/findiff_imp_am_put_newmat.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/findiff_imp_eur_call_newmat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/findiff_imp_eur_call_newmat.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/findiff_imp_eur_put_newmat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/findiff_imp_eur_put_newmat.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/futures_opt_call_bin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/futures_opt_call_bin.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/futures_opt_call_black.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/futures_opt_call_black.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/futures_opt_put_bin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/futures_opt_put_bin.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/futures_opt_put_black.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/futures_opt_put_black.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/futures_price.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/futures_price.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/heston_price.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/heston_price.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/interest_rate_trees_gbm_build.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/interest_rate_trees_gbm_build.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/interest_rate_trees_gbm_value_of_callable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/interest_rate_trees_gbm_value_of_callable.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/interest_rate_trees_gbm_value_of_cashflows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/interest_rate_trees_gbm_value_of_cashflows.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/merton_jump_diff_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/merton_jump_diff_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/mv_calc_itpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/mv_calc_itpp.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/mv_calc_newmat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/mv_calc_newmat.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/mv_calc_port_unconstrained_itpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/mv_calc_port_unconstrained_itpp.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/mv_calc_port_unconstrained_newmat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/mv_calc_port_unconstrained_newmat.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/normdist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/normdist.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/normdist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/normdist.h -------------------------------------------------------------------------------- /src/models/financialrecipes/src/opt_price_trinom_am_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/opt_price_trinom_am_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/opt_price_trinom_am_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/opt_price_trinom_am_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/option_price_american_perpetual_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/option_price_american_perpetual_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/option_price_american_perpetual_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/option_price_american_perpetual_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/payoff_average.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/payoff_average.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/payoff_binary_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/payoff_binary_options.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/payoff_binary_put_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/payoff_binary_put_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/payoff_black_scholes_case.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/payoff_black_scholes_case.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/payoff_lookback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/payoff_lookback.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/random_normal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/random_normal.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/random_uniform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/random_uniform.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/sim_euro_opt_generic_routine_price_sequence_control_variate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/sim_euro_opt_generic_routine_price_sequence_control_variate.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/simulate_european_options_generic_routine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/simulate_european_options_generic_routine.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/simulate_european_options_generic_routine_antithetic_variate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/simulate_european_options_generic_routine_antithetic_variate.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/simulate_european_options_generic_routine_control_variate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/simulate_european_options_generic_routine_control_variate.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/simulate_european_options_generic_routine_price_sequence.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/simulate_european_options_generic_routine_price_sequence.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/simulate_lognormal_variable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/simulate_lognormal_variable.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/simulate_lognormally_distributed_sequence.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/simulate_lognormally_distributed_sequence.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/simulated_call_euro.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/simulated_call_euro.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/simulated_delta_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/simulated_delta_call.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/simulated_delta_put.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/simulated_delta_put.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/simulated_put_euro.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/simulated_put_euro.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class.h -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_cir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_cir.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_cubic_spline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_cubic_spline.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_flat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_flat.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_flat.h -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_ho_lee.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_ho_lee.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_ho_lee_build_tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_ho_lee_build_tree.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_ho_lee_calc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_ho_lee_calc.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_ho_lee_price_bond_option.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_ho_lee_price_bond_option.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_interpolated.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_interpolated.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_interpolated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_interpolated.h -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_nelson_siegel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_nelson_siegel.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_svensson.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_svensson.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_svensson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_svensson.h -------------------------------------------------------------------------------- /src/models/financialrecipes/src/term_structure_class_vasicek.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/term_structure_class_vasicek.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/termstru_discfact_cir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/termstru_discfact_cir.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/termstru_discfact_cubic_spline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/termstru_discfact_cubic_spline.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/termstru_discfact_vasicek.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/termstru_discfact_vasicek.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/termstru_transforms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/termstru_transforms.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/termstru_yield_interpolated.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/termstru_yield_interpolated.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/termstru_yield_nels_sie.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/termstru_yield_nels_sie.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/termstru_yield_svensson.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/termstru_yield_svensson.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/warrant_price_black_scholes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/warrant_price_black_scholes.cc -------------------------------------------------------------------------------- /src/models/financialrecipes/src/warrant_price_black_scholes_dividends.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/financialrecipes/src/warrant_price_black_scholes_dividends.cc -------------------------------------------------------------------------------- /src/models/metaoptions/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/AUTHORS -------------------------------------------------------------------------------- /src/models/metaoptions/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/ChangeLog -------------------------------------------------------------------------------- /src/models/metaoptions/src/AmericanExchangeOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/AmericanExchangeOption.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/AssetOrNothing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/AssetOrNothing.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/BAWAmericanApprox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/BAWAmericanApprox.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/BAWbisection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/BAWbisection.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/BSAmericanApprox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/BSAmericanApprox.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/BSbisection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/BSbisection.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/BarrierBinominal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/BarrierBinominal.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/BinaryBarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/BinaryBarrier.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/CRRBinominal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/CRRBinominal.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/CashOrNothing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/CashOrNothing.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/ComplexChooser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/ComplexChooser.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/ConvertibleBond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/ConvertibleBond.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/DiscreteAdjustedBarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/DiscreteAdjustedBarrier.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/DoubleBarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/DoubleBarrier.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/EquityLinkedFXO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/EquityLinkedFXO.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/EuropeanExchangeOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/EuropeanExchangeOption.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/ExchangeExchangeOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/ExchangeExchangeOption.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/Executive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/Executive.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/ExtendibleWriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/ExtendibleWriter.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/ExtremeSpreadOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/ExtremeSpreadOption.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/FixedStrikeLookback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/FixedStrikeLookback.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/FloatingStrikeLookback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/FloatingStrikeLookback.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/ForEquOptInDomCur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/ForEquOptInDomCur.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/ForwardStartOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/ForwardStartOption.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/GapOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/GapOption.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/GarmanKohlhagen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/GarmanKohlhagen.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/GeometricAverageRateOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/GeometricAverageRateOption.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/JumpDiffusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/JumpDiffusion.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/LevyAsian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/LevyAsian.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/LookBarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/LookBarrier.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/Makefile.am -------------------------------------------------------------------------------- /src/models/metaoptions/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/Makefile.in -------------------------------------------------------------------------------- /src/models/metaoptions/src/MiltersenSwartz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/MiltersenSwartz.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/NewtonRaphson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/NewtonRaphson.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/OptionsOnOptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/OptionsOnOptions.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/OptionsOnTheMaxMin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/OptionsOnTheMaxMin.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/PartialFixedLB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/PartialFixedLB.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/PartialFloatLB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/PartialFloatLB.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/PartialTimeBarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/PartialTimeBarrier.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/PartialTimeTwoAssetBarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/PartialTimeTwoAssetBarrier.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/Quanto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/Quanto.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/RollGeskeWhaley.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/RollGeskeWhaley.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/SimpleChooser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/SimpleChooser.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/SoftBarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/SoftBarrier.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/SpreadApproximation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/SpreadApproximation.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/StandardBarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/StandardBarrier.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/SuperShare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/SuperShare.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/Swapoption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/Swapoption.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/TakeoverFXoption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/TakeoverFXoption.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/ThreeDimensionalBinominal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/ThreeDimensionalBinominal.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/TimeSwitchOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/TimeSwitchOption.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/TrinominalTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/TrinominalTree.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/TurnbullWakemanAsian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/TurnbullWakemanAsian.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/TwoAssetBarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/TwoAssetBarrier.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/TwoAssetCashOrNothing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/TwoAssetCashOrNothing.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/TwoAssetCorrelation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/TwoAssetCorrelation.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/VasicekBondOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/VasicekBondOption.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/VasicekBondPrice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/VasicekBondPrice.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/bisection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/bisection.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/black76.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/black76.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/blackscholes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/blackscholes.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/cbnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/cbnd.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/check_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/check_options.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/cnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/cnd.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/gbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/gbs.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/gcarry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/gcarry.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/gdelta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/gdelta.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/gfrench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/gfrench.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/ggamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/ggamma.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/grho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/grho.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/gtheta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/gtheta.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/gvega.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/gvega.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/merton73.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/merton73.c -------------------------------------------------------------------------------- /src/models/metaoptions/src/metaoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/src/metaoptions.h -------------------------------------------------------------------------------- /src/models/metaoptions/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/tests/Makefile.am -------------------------------------------------------------------------------- /src/models/metaoptions/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/tests/Makefile.in -------------------------------------------------------------------------------- /src/models/metaoptions/tests/TESTSUITE.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/metaoptions/tests/TESTSUITE.README -------------------------------------------------------------------------------- /src/models/spinsky/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/spinsky/Makefile.am -------------------------------------------------------------------------------- /src/models/spinsky/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/spinsky/Makefile.in -------------------------------------------------------------------------------- /src/models/spinsky/binomial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/spinsky/binomial.cpp -------------------------------------------------------------------------------- /src/models/spinsky/binomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/src/models/spinsky/binomial.h -------------------------------------------------------------------------------- /test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/test-driver -------------------------------------------------------------------------------- /utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/utils/README -------------------------------------------------------------------------------- /utils/apt-get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/utils/apt-get.sh -------------------------------------------------------------------------------- /utils/dnf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/utils/dnf.sh -------------------------------------------------------------------------------- /utils/tab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/utils/tab.sh -------------------------------------------------------------------------------- /utils/yum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/utils/yum.sh -------------------------------------------------------------------------------- /utils/zypper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyBradford/optionmatrix/HEAD/utils/zypper.sh --------------------------------------------------------------------------------