investfly-sdk 1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- investfly/__init__.py +0 -0
- investfly/api/InvestflyApiClient.py +23 -0
- investfly/api/MarketDataApiClient.py +16 -0
- investfly/api/PortfolioApiClient.py +37 -0
- investfly/api/RestApiClient.py +81 -0
- investfly/api/__init__.py +0 -0
- investfly/cli/CliApiClient.py +46 -0
- investfly/cli/__init__.py +0 -0
- investfly/cli/commands.py +78 -0
- investfly/models/CommonModels.py +70 -0
- investfly/models/Indicator.py +164 -0
- investfly/models/MarketData.py +177 -0
- investfly/models/MarketDataIds.py +119 -0
- investfly/models/ModelUtils.py +34 -0
- investfly/models/PortfolioModels.py +270 -0
- investfly/models/SecurityFilterModels.py +167 -0
- investfly/models/SecurityUniverseSelector.py +202 -0
- investfly/models/StrategyModels.py +124 -0
- investfly/models/TradingStrategy.py +59 -0
- investfly/models/__init__.py +10 -0
- investfly/samples/__init__.py +0 -0
- investfly/samples/indicators/IndicatorTemplate.py +80 -0
- investfly/samples/indicators/NewsSentiment.py +41 -0
- investfly/samples/indicators/RsiOfSma.py +42 -0
- investfly/samples/indicators/SmaEmaAverage.py +40 -0
- investfly/samples/indicators/__init__.py +0 -0
- investfly/samples/strategies/SmaCrossOverStrategy.py +35 -0
- investfly/samples/strategies/SmaCrossOverTemplate.py +131 -0
- investfly/samples/strategies/__init__.py +0 -0
- investfly/utils/CommonUtils.py +79 -0
- investfly/utils/PercentBasedPortfolioAllocator.py +35 -0
- investfly/utils/__init__.py +2 -0
- investfly_sdk-1.0.dist-info/LICENSE.txt +21 -0
- investfly_sdk-1.0.dist-info/METADATA +53 -0
- investfly_sdk-1.0.dist-info/RECORD +38 -0
- investfly_sdk-1.0.dist-info/WHEEL +5 -0
- investfly_sdk-1.0.dist-info/entry_points.txt +2 -0
- investfly_sdk-1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,38 @@
|
|
1
|
+
investfly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
investfly/api/InvestflyApiClient.py,sha256=dHAWBaMPCPLVYvpzHGAwHisUeDcGN0yDwZC3Jl4LYew,799
|
3
|
+
investfly/api/MarketDataApiClient.py,sha256=XmGIt5RK0-70cHTDF24g3YXqqxCNyzMzBIVhz1-7ZqY,460
|
4
|
+
investfly/api/PortfolioApiClient.py,sha256=FVPjFz_eVLVXs-yPRefIcPoNiR3_WWzG7L0Dht60Z2o,1693
|
5
|
+
investfly/api/RestApiClient.py,sha256=QRLkvsnzmIgBRnh1_sBxKJtS8oE03YcT3FUA1LRFkuo,3029
|
6
|
+
investfly/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
investfly/cli/CliApiClient.py,sha256=PJe85_9jkMFBtKH5PNw3jtWjjk14DNTR089LA_IT5Fg,1482
|
8
|
+
investfly/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
+
investfly/cli/commands.py,sha256=foVs0kXuFCWRFOgvk_iWxdIB-xODVjal00pIWCw_0Mg,2826
|
10
|
+
investfly/models/CommonModels.py,sha256=OrwgqCiDL_HJfZTJeeVVsHUuRSDm6Ehk9xpnFy5AB5I,1663
|
11
|
+
investfly/models/Indicator.py,sha256=FqiuiJJXCHUQtxf1AGUhIv2oYy3705D9MT3aVrJpX_s,6879
|
12
|
+
investfly/models/MarketData.py,sha256=h7mefNLmAtLL8z75CQy0FZsSazKnsaWULt4B4Bh2uhw,5786
|
13
|
+
investfly/models/MarketDataIds.py,sha256=ITrMVC0EjC58Xf7nlLG-GIwN46vWmNzegFZFW8GXT0E,3124
|
14
|
+
investfly/models/ModelUtils.py,sha256=pnrVIDM26LqK0Wuw7gTs0c97lCLIV_fm0EUtlEfT7j4,964
|
15
|
+
investfly/models/PortfolioModels.py,sha256=JvqZiH0g3w9qGqEXywpgqasM9olV3n6kjH7bfy9t0Z0,8462
|
16
|
+
investfly/models/SecurityFilterModels.py,sha256=4baTBBI-XOKh8uTpvqVvk3unD-xHoyooO3dd5lKWbXA,5806
|
17
|
+
investfly/models/SecurityUniverseSelector.py,sha256=z4V5Ng0DQ8DVy8FeuB_7swAYO7rmSK6HfJc7vA1NCq8,8111
|
18
|
+
investfly/models/StrategyModels.py,sha256=j9IuGnLO0g_po95-6AteZnvy9wdNR4EJ_lF-rkn3Q3w,3585
|
19
|
+
investfly/models/TradingStrategy.py,sha256=dbsQ0wAY7M6s3yUpjp5cXp2X3tZwaUFB48pW-79C5D8,2825
|
20
|
+
investfly/models/__init__.py,sha256=YVr7PakHt-g7pRmihFqYrvxNMwYE-rlDymFGp4neUdE,1071
|
21
|
+
investfly/samples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
+
investfly/samples/indicators/IndicatorTemplate.py,sha256=X0AlStLnL1SBSnTwrtW_sthm00tmuN5V7N-GrtiarmM,4454
|
23
|
+
investfly/samples/indicators/NewsSentiment.py,sha256=fcpAqOcNWmqYsP-xwJquCX_6G7Ntr3A1-m31eJHAUOE,65095
|
24
|
+
investfly/samples/indicators/RsiOfSma.py,sha256=kiLvMhrsbc_lV0EEpERGW2im19u5XmyJk88aTDGSBis,1719
|
25
|
+
investfly/samples/indicators/SmaEmaAverage.py,sha256=9pp3TtEKJADD_bfufwrWlwMswlTLoN7Nj6BC_jJ1sRs,1749
|
26
|
+
investfly/samples/indicators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
|
+
investfly/samples/strategies/SmaCrossOverStrategy.py,sha256=szjmnqQN8O7CRIS1vc-fRONKg4Dy1d59dZhiSEpEJAI,1699
|
28
|
+
investfly/samples/strategies/SmaCrossOverTemplate.py,sha256=UUQjDkwQ4sn_ohMcW_J3rIietMIx69CX6gK6HuIFF-A,8164
|
29
|
+
investfly/samples/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
+
investfly/utils/CommonUtils.py,sha256=lCXAdI8-6PgbutcXJqUmSfuuLXp82FcnlxNVjCJpqLU,2631
|
31
|
+
investfly/utils/PercentBasedPortfolioAllocator.py,sha256=oKaSjq5L_3NfRo2iayepCZtZnCevsx4XpsxFfZMTnV8,1684
|
32
|
+
investfly/utils/__init__.py,sha256=2BqXoOQElv-GIU6wvmf2aaAABAcNny2TETcj7kf9rzM,129
|
33
|
+
investfly_sdk-1.0.dist-info/LICENSE.txt,sha256=Jmd2U7G7Z1oNdnRERRzFXN6C--bEo_K56j4v9EpJSTg,1090
|
34
|
+
investfly_sdk-1.0.dist-info/METADATA,sha256=sjsQYBDhYkB77JBgbIFhj9sIr9KqffIropVjo0miif8,2239
|
35
|
+
investfly_sdk-1.0.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
36
|
+
investfly_sdk-1.0.dist-info/entry_points.txt,sha256=4PPHKy66mm-HrogzgqGKP7l9zCury-wY84H4KAymloY,62
|
37
|
+
investfly_sdk-1.0.dist-info/top_level.txt,sha256=dlEJ2OGWA3prqMvXELeydS5RTdpSzh7hz1LwR3NMc7A,10
|
38
|
+
investfly_sdk-1.0.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
investfly
|