免费蒙特卡罗金融报价模拟器?
我正在试验我在 prolog 中编写的应用程序,我需要使用蒙特卡罗模拟器来输出不同随机生成场景的价格。有谁知道在哪里可以找到可以免费执行此操作的东西? (我不是在寻找要使用的库,例如 QuantLib)
谢谢
I am experimenting with an application I am writing in prolog , and I need to use monte carlo simulator that would output prices for different randomly generated scenarios. Does anyone know where to look for something that would do this for free ? (I am not look for a library to use such as QuantLib)
Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果不确切知道您想要做什么,就很难推荐具体的东西。然而 http://cran.r-project.org/web/packages/ 有许多 R 的蒙特卡洛包。
我个人使用 http://hackage.haskell.org/package/ monte-carlo/ 这是一个 Haskell 工具包。我还没有发现现成的模拟器非常有用。
Without knowing exactly what you are trying to do it is difficult to recommend something specific. However http://cran.r-project.org/web/packages/ has many monte carlo packages for R.
Personally I use http://hackage.haskell.org/package/monte-carlo/ which is a toolkit for haskell. I have not found the off the shelf simulators to be very useful.
我不确定您是否想要 prolog 中的财务模拟器,但如果您愿意使用不同的语言,我会尝试
如需简单品尝,请查看以下链接:
I'm not sure if you are after a financial simulator in prolog, but if you are willing to use a different language I would try R.
For a brief taster, have a look at the following links:
您可能会对一个研究项目感兴趣:http://www-rocq.inria .fr/mathfi/Premia/index.html。
它是免费的,涵盖了大多数金融衍生品的定价,使用各种数值方法。
There is a research project that might interest you: http://www-rocq.inria.fr/mathfi/Premia/index.html.
It's free and covering the pricing of most financial derivatives, using various numerical methods..
我不确定您是否能够将它用于您的用例,但我们刚刚开源了性能良好的命令行蒙特卡罗模拟器。 https://github.com/monetate/monte-carlo-simulator
它只是读取一个stdin 上的 csv 并在 stdout 上输出所有随机场景的 csv。
I'm not sure if you'll be able to utilize it for your use case, but we just open sourced our decently-performant command line Monte Carlo simulator. https://github.com/monetate/monte-carlo-simulator
It simply reads a csv on stdin and outputs a csv of all the random scenarios on stdout.