What are some of the best Financial Libraries for D? I would like to be able to aggregate as much accurate information as possible.
Thanks.
Thread overview | |||||||||
---|---|---|---|---|---|---|---|---|---|
|
June 13, 2021 Financial Library | ||||
---|---|---|---|---|
| ||||
What are some of the best Financial Libraries for D? I would like to be able to aggregate as much accurate information as possible. Thanks. |
June 13, 2021 Re: Financial Library | ||||
---|---|---|---|---|
| ||||
Posted in reply to Financial Wiz | On Sunday, 13 June 2021 at 12:46:29 UTC, Financial Wiz wrote: >What are some of the best Financial Libraries for D? I would like to be able to aggregate as much accurate information as possible. Thanks. I am not into financials, but these libs show up in a search: https://code.dlang.org/search?q=Decimal. Perhaps you know some other relevant terms to search for. One of the sponsors of dlang is Symmetry Investments, who run a hedge fund. Their use of D is pretty advanced, and includes many libs and utilities that are not limited to financial applications. These are the ones that I know of: https://code.dlang.org/search?q=Mir, https://code.dlang.org/packages/dpp, https://code.dlang.org/packages/pegged, — Bastiaan. |
June 13, 2021 Re: Financial Library | ||||
---|---|---|---|---|
| ||||
Posted in reply to Bastiaan Veelo | On Sunday, 13 June 2021 at 22:32:16 UTC, Bastiaan Veelo wrote: >On Sunday, 13 June 2021 at 12:46:29 UTC, Financial Wiz wrote: >What are some of the best Financial Libraries for D? I would like to be able to aggregate as much accurate information as possible. Thanks. I am not into financials, but these libs show up in a search: https://code.dlang.org/search?q=Decimal. Perhaps you know some other relevant terms to search for. [snip] Assignment contracts also make it more difficult for people who work for financial firms to work on open-source projects that are directly related to finance. |
June 14, 2021 Re: Financial Library | ||||
---|---|---|---|---|
| ||||
Posted in reply to Financial Wiz | On Sunday, 13 June 2021 at 12:46:29 UTC, Financial Wiz wrote: >What are some of the best Financial Libraries for D? I would like to be able to aggregate as much accurate information as possible. A number of numerical libraries kind of like numpy https://code.dlang.org/search?q=Mir D wrapper for https://ta-lib.org/ |
June 14, 2021 Re: Financial Library | ||||
---|---|---|---|---|
| ||||
Posted in reply to Bastiaan Veelo | On Sunday, 13 June 2021 at 22:32:16 UTC, Bastiaan Veelo wrote: >On Sunday, 13 June 2021 at 12:46:29 UTC, Financial Wiz wrote: >What are some of the best Financial Libraries for D? I would like to be able to aggregate as much accurate information as possible. Thanks. I am not into financials, but these libs show up in a search: https://code.dlang.org/search?q=Decimal. Perhaps you know some other relevant terms to search for. One of the sponsors of dlang is Symmetry Investments, who run a hedge fund. Their use of D is pretty advanced, and includes many libs and utilities that are not limited to financial applications. These are the ones that I know of: https://code.dlang.org/search?q=Mir, https://code.dlang.org/packages/dpp, https://code.dlang.org/packages/pegged, — Bastiaan. Ok, what I'm talking about by Financial library is mainly aggregating data in to D from sources that provide them such as yahoo or google so I can do what I want with the data. |
June 14, 2021 Re: Financial Library | ||||
---|---|---|---|---|
| ||||
Posted in reply to Financial Wiz | On Monday, 14 June 2021 at 06:47:01 UTC, Financial Wiz wrote: >Ok, what I'm talking about by Financial library is mainly aggregating data in to D from sources that provide them such as yahoo or google so I can do what I want with the data. http/ftp client library, inspired by python-requests A HTML scraper command-line application Or, just use Python. |
June 14, 2021 Re: Financial Library | ||||
---|---|---|---|---|
| ||||
Posted in reply to Financial Wiz | On Sunday, 13 June 2021 at 12:46:29 UTC, Financial Wiz wrote: >What are some of the best Financial Libraries for D? I would like to be able to aggregate as much accurate information as possible. Thanks. if you want a type-safe money handling type, try https://code.dlang.org/packages/money It's well documented, has straightforward code and does just what's advertised. It's also hosted on the dlang-community organization on GitHub, so it's easily possible to take over ownership if the project author disappears. |