Skip to content

274 add azure blob storage state serializer and deserializer for stateless run with statefull support #303

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ bumpversion.egg-info/
*.sqlite3

**/backtest_data/*
*/backtest_reports/
**/backtest_reports/
**/backtest_reports/*
**/databases/
.vscode/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,4 +338,4 @@ You can pick up a task by assigning yourself to it.
**Note** before starting any major new feature work, *please open an issue describing what you are planning to do*.
This will ensure that interested parties can give valuable feedback on the feature, and let others know that you are working on it.

**Important:** Always create your feature or hotfix against the `develop` branch, not `main`.
**Important:** Always create your feature or hotfix against the `develop` branch, not `main`.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

load_dotenv()

# Define market data sources OHLCV data for candles
# Define market data sources
# OHLCV data for candles
bitvavo_btc_eur_ohlcv_2h = CCXTOHLCVMarketDataSource(
identifier="BTC-ohlcv",
market="BITVAVO",
Expand Down
2 changes: 2 additions & 0 deletions examples/bitvavo_trading_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
# Define your market credential for bitvavo, keys are read from .env file
bitvavo_market_credential = MarketCredential(
market="bitvavo",
api_key="your_api_key",
secret_key="your_secret_key"
)
# Define your market data sources for coinbase
bitvavo_btc_eur_ohlcv_2h = CCXTOHLCVMarketDataSource(
Expand Down
1 change: 0 additions & 1 deletion examples/deployments/azure_function/.funcignore

This file was deleted.

48 changes: 0 additions & 48 deletions examples/deployments/azure_function/.gitignore

This file was deleted.

76 changes: 0 additions & 76 deletions examples/deployments/azure_function/README.md

This file was deleted.

87 changes: 0 additions & 87 deletions examples/deployments/azure_function/function_app.py

This file was deleted.

15 changes: 0 additions & 15 deletions examples/deployments/azure_function/host.json

This file was deleted.

2 changes: 0 additions & 2 deletions examples/deployments/azure_function/requirements.txt

This file was deleted.

20 changes: 0 additions & 20 deletions investing_algorithm_framework/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@
CCXTTickerMarketDataSource, CSVOHLCVMarketDataSource, \
CSVTickerMarketDataSource, AzureBlobStorageStateHandler
from .create_app import create_app
from investing_algorithm_framework.indicators import get_rsi, get_peaks, \
is_uptrend, is_downtrend, is_crossover, is_crossunder, is_above, \
is_below, has_crossed_upward, get_sma, get_up_and_downtrends, \
get_ema, get_adx, has_crossed_downward, get_willr, is_divergence

__all__ = [
"Algorithm",
Expand Down Expand Up @@ -70,22 +66,6 @@
"BacktestDateRange",
"convert_polars_to_pandas",
"DateRange",
"get_peaks",
"is_uptrend",
"is_downtrend",
"is_crossover",
"is_crossunder",
"is_above",
"is_below",
"has_crossed_upward",
"get_sma",
"get_up_and_downtrends",
"get_rsi",
"get_ema",
"get_adx",
"has_crossed_downward",
"get_willr",
"is_divergence",
"get_backtest_report",
"AzureBlobStorageStateHandler",
"DEFAULT_LOGGING_CONFIG",
Expand Down
Loading
Loading