Skip to content

Commit 7b04c2d

Browse files
committed
Add deployment to Azure Function
1 parent 98ab2cb commit 7b04c2d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2703
-3239
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,4 +338,4 @@ You can pick up a task by assigning yourself to it.
338338
**Note** before starting any major new feature work, *please open an issue describing what you are planning to do*.
339339
This will ensure that interested parties can give valuable feedback on the feature, and let others know that you are working on it.
340340

341-
**Important:** Always create your feature or hotfix against the `develop` branch, not `main`.
341+
**Important:** Always create your feature or hotfix against the `develop` branch, not `main`.

examples/deployments/azure_function/.funcignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/deployments/azure_function/.gitignore

Lines changed: 0 additions & 48 deletions
This file was deleted.

examples/deployments/azure_function/README.md

Lines changed: 0 additions & 76 deletions
This file was deleted.

examples/deployments/azure_function/app_entry.py

Lines changed: 0 additions & 48 deletions
This file was deleted.

examples/deployments/azure_function/function_app.py

Lines changed: 0 additions & 87 deletions
This file was deleted.

examples/deployments/azure_function/host.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

examples/deployments/azure_function/requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

investing_algorithm_framework/__init__.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@
1717
CCXTTickerMarketDataSource, CSVOHLCVMarketDataSource, \
1818
CSVTickerMarketDataSource, AzureBlobStorageStateHandler
1919
from .create_app import create_app
20-
from investing_algorithm_framework.indicators import get_rsi, get_peaks, \
21-
is_uptrend, is_downtrend, is_crossover, is_crossunder, is_above, \
22-
is_below, has_crossed_upward, get_sma, get_up_and_downtrends, \
23-
get_ema, get_adx, has_crossed_downward, get_willr, is_divergence
2420

2521
__all__ = [
2622
"Algorithm",
@@ -70,22 +66,6 @@
7066
"BacktestDateRange",
7167
"convert_polars_to_pandas",
7268
"DateRange",
73-
"get_peaks",
74-
"is_uptrend",
75-
"is_downtrend",
76-
"is_crossover",
77-
"is_crossunder",
78-
"is_above",
79-
"is_below",
80-
"has_crossed_upward",
81-
"get_sma",
82-
"get_up_and_downtrends",
83-
"get_rsi",
84-
"get_ema",
85-
"get_adx",
86-
"has_crossed_downward",
87-
"get_willr",
88-
"is_divergence",
8969
"get_backtest_report",
9070
"AzureBlobStorageStateHandler",
9171
"DEFAULT_LOGGING_CONFIG",

0 commit comments

Comments
 (0)