Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
This is an unofficial Python client for the AlphaSquared API. It allows users to interact with the API to retrieve asset information, strategy values, and hypothetical data for cryptocurrency trading.
Install the package using pip:
pip install alphasquared-py
To use the AlphaSquared API, you need to obtain an API token from your AlphaSquared account dashboard. Once you have your token, you can authenticate as follows:
from alphasquared import AlphaSquared
api = AlphaSquared("YOUR_API_TOKEN")
btc_info = api.get_asset_info("BTC")
print(btc_info)
strategy_values = api.get_strategy_values("My Custom Strat")
print(strategy_values)
eth_hypotheticals = api.get_hypotheticals("ETH")
print(eth_hypotheticals)
btc_comprehensive = api.get_comprehensive_asset_data("BTC")
print(btc_comprehensive)
action, value = api.get_strategy_value_for_risk("My Custom Strat", 50)
print(f"Action: {action}, Value: {value}")
current_risk = api.get_current_risk("BTC")
print(current_risk)
This example demonstrates how to get the current risk for an asset, then use that risk level to determine the strategy action and value:
# Get the current risk for BTC
btc_risk = api.get_current_risk("BTC")
print(f"Current BTC Risk: {btc_risk}")
# Define your strategy name in AlphaSquared
strategy_name = "My Custom Strat"
# Get the strategy action and value for the current risk
action, value = api.get_strategy_value_for_risk(strategy_name, btc_risk)
print(f"For risk {btc_risk}: Action = {action.upper()}, Value = {value}")
The client includes built-in error handling. You can check for errors in the API responses:
result = api.get_asset_info("INVALID_ASSET")
if api.has_error(result):
print("An error occurred:", result["error"])
The client automatically handles rate limiting to ensure compliance with the API's usage rules (6 requests per minute).
The client uses caching to reduce the number of API calls. You can set the cache TTL (time-to-live) when initializing the client. The default cache TTL is 5 minutes.
api = AlphaSquared("YOUR_API_TOKEN", cache_ttl=300) # 5 minutes
For more information about the AlphaSquared API, consult the official API documentation.
This project is licensed under the MIT License. See the LICENSE file for more information.
This project is not affiliated with, maintained, or endorsed by AlphaSquared. Use this software at your own risk. Trading cryptocurrencies carries a risk of financial loss. The developers of this software are not responsible for any financial losses or damages incurred while using this software.
For any issues, questions, or assistance, please open an issue on the GitHub repository or contact AlphaSquared support at admin@alphasquared.io.
FAQs
The unofficial Python client for the AlphaSquared API
We found that alphasquared-py demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.