fidelity-api 0.0.3__tar.gz → 0.0.4__tar.gz
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.
- {fidelity-api-0.0.3/fidelity_api.egg-info → fidelity-api-0.0.4}/PKG-INFO +1 -1
- {fidelity-api-0.0.3 → fidelity-api-0.0.4}/fidelity/fidelity.py +1 -0
- {fidelity-api-0.0.3 → fidelity-api-0.0.4/fidelity_api.egg-info}/PKG-INFO +1 -1
- {fidelity-api-0.0.3 → fidelity-api-0.0.4}/setup.py +1 -1
- {fidelity-api-0.0.3 → fidelity-api-0.0.4}/LICENSE +0 -0
- {fidelity-api-0.0.3 → fidelity-api-0.0.4}/README.md +0 -0
- {fidelity-api-0.0.3 → fidelity-api-0.0.4}/fidelity/__init__.py +0 -0
- {fidelity-api-0.0.3 → fidelity-api-0.0.4}/fidelity_api.egg-info/SOURCES.txt +0 -0
- {fidelity-api-0.0.3 → fidelity-api-0.0.4}/fidelity_api.egg-info/dependency_links.txt +0 -0
- {fidelity-api-0.0.3 → fidelity-api-0.0.4}/fidelity_api.egg-info/requires.txt +0 -0
- {fidelity-api-0.0.3 → fidelity-api-0.0.4}/fidelity_api.egg-info/top_level.txt +0 -0
- {fidelity-api-0.0.3 → fidelity-api-0.0.4}/setup.cfg +0 -0
|
@@ -1057,6 +1057,7 @@ class FidelityAutomation:
|
|
|
1057
1057
|
available_balance = float(available_balance.replace("$", "").replace(",", ""))
|
|
1058
1058
|
|
|
1059
1059
|
# Check if there's enough balance
|
|
1060
|
+
transfer_amount = round(transfer_amount, 2)
|
|
1060
1061
|
if transfer_amount > available_balance:
|
|
1061
1062
|
print(f"Insufficient funds. Available: ${available_balance}, Attempted transfer: ${transfer_amount}")
|
|
1062
1063
|
return False
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|