-
Updated
Apr 19, 2022 - Python
fintech
Here are 904 public repositories matching this topic...
-
Updated
Mar 28, 2022 - Python
-
Updated
Apr 11, 2022 - Go
I want to know do agents learn? Any tips are appreciated
To sort companies according to categories (fintech, edtech, finance, banks etc) see guidelines.md
this will take a bit longer time. first, we have to add links to all companies.
-
Updated
Apr 19, 2022 - Python
-
Updated
Apr 21, 2022 - C++
-
Updated
Oct 19, 2021 - Python
-
Updated
Apr 6, 2022 - Python
-
Updated
Apr 18, 2022
-
Updated
Jan 10, 2022
-
Updated
Mar 10, 2022 - JavaScript
-
Updated
Apr 20, 2022 - C++
-
Updated
Apr 21, 2022 - TypeScript
-
Updated
Apr 13, 2022 - Python
-
Updated
Apr 14, 2022 - Go
-
Updated
Mar 9, 2018 - Go
-
Updated
Dec 13, 2021 - Python
-
Updated
Feb 4, 2022 - Python
-
Updated
Jul 20, 2021 - Python
-
Updated
Feb 10, 2021 - Clojure
-
Updated
Apr 9, 2022 - Python
-
Updated
Apr 11, 2022 - Elixir
We will provide tutorials with two versions, notebook and python. The python version will be more efficient to debug locally step by step. The notebook .ipynb can be obtained by directly copying from corresponding .py except the front install commands.
There may be several structures:
- Like the current architecture in FinRL-Meta, tutorials_notebook and tutorials_python
- tutorials -> 1-In
-
Updated
Aug 12, 2018 - Swift
ACH Version: v1.6.3
The achcli utility does not currently support ach files with IAT batches and ADV entries (and possibly other items). We should add support to print these items out to stdout.
-
Updated
Dec 9, 2020
-
Updated
Dec 25, 2021 - Jupyter Notebook
Improve this page
Add a description, image, and links to the fintech topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the fintech topic, visit your repo's landing page and select "manage topics."
In order to achieve the expression like "Power($close, Rank($close, 14))" which is fairly common in fomulla alpha.
I guess we could use following code:
class Power(NpPairOperator): def __init__(self, feature_left, feature_right): super(PairPower, self).__init__(feature_left, feature_right, "power")Finally, we could add a rpow magic method to Expression class