Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
111 of your 215 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • GitHub API rate-limited (HTTP 403) — preflight skipped, fell back to direct git clone.
  • Clone from GitHub took 55.23s for a 60.1 MB repo slow.
  • Repobility's analysis ran in 8.59s after the clone landed.

freqtrade/freqtrade

https://github.com/freqtrade/freqtrade · scanned 2026-06-05 11:41 UTC (5 days, 10 hours ago) · 10 languages

603 raw signals (197 security + 406 graph) 11/13 scanners ran 90th percentile · Python · large (100-500K LoC) System graph score 63 (higher by 25)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 10 hours ago · v2 · 274 actionable findings from 2 signal sources. 126 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 100.0 0.20 20.00
documentation_score 98.0 0.15 14.70
practices_score 94.0 0.15 14.10
code_quality 52.0 0.10 5.20
Overall 1.00 88.0
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade A- (88/100). Dimensions: security 100, maintainability 60. 197 findings (44 security). 139,633 lines analyzed.

Showing 190 of 274 actionable findings. 400 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high Security checks quality Quality conf 1.00 ✓ Repobility [MINED107] Missing import: `queue` used but not imported: The file uses `queue.something(...)` but never imports `queue`. This raises NameError at runtime the first time the line executes.
Add `import queue` at the top of the file.
freqtrade/rpc/rpc_manager.py:91
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility 8 occurrences Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
2 files, 8 locations
.github/workflows/ci.yml:75, 168, 235, 290, 417, 418, 419 (7 hits)
.github/workflows/pre-commit-types-update.yml:31
CI/CD securityworkflow secretsGitHub Actions
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: DELETE /locks/{lockid}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
freqtrade/rpc/api_server/api_trading.py:305
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: DELETE /trades/{tradeid}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
freqtrade/rpc/api_server/api_trading.py:187
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: DELETE /trades/{tradeid}/open-order.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
freqtrade/rpc/api_server/api_trading.py:192
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /background/{jobid}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
freqtrade/rpc/api_server/api_background_tasks.py:32
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /pairlists/evaluate/{jobid}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
freqtrade/rpc/api_server/api_pairlists.py:127
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /trade/{tradeid}.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
freqtrade/rpc/api_server/api_trading.py:179
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: GET /trades/{trade_id}/custom-data.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
freqtrade/rpc/api_server/api_trading.py:222
high Security checks security auth conf 0.70 [AUC003] Object-level route lacks visible authorization: A route with an object id-like parameter does not show nearby authentication or authorization evidence. This is a BOLA/IDOR review target. Endpoint: POST /trades/{tradeid}/reload.
Add ownership, tenant, relationship, or policy checks before reading or mutating the target object.
freqtrade/rpc/api_server/api_trading.py:198
low Security checks quality Quality conf 1.00 ✓ Repobility 3 occurrences [MINED006] Overcatch Baseexception: except BaseException: ... — prevents Ctrl+C and SystemExit from working.
Review and fix per the pattern semantics. See CWE-705 / for context.
3 files, 3 locations
freqtrade/commands/data_commands.py:42
freqtrade/commands/hyperopt_commands.py:47
freqtrade/main.py:64
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences [MINED108] `self.freqtrade` used but never assigned in __init__: Method `_init` of class `Worker` reads `self.freqtrade`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self.freqtrade = <default>` in __init__, or add a class-level default.
lines 55, 58, 59, 61, 72, 74, 79, 81, +15 more
freqtrade/worker.py:55, 58, 59, 61, 72, 74, 79, 81, +15 more (25 hits)
high Security checks software dependencies conf 0.90 ✓ Repobility 5 occurrences [MINED118] Dockerfile FROM `freqtradeorg/freqtrade:develop_freqairl` not pinned by digest: `FROM freqtradeorg/freqtrade:develop_freqairl` resolves the tag at build time. The registry CAN re-push a different image for the same tag, so every build is potentially different. Production images should pin to `image@sha256:...` for reproducibility + supply-chain integrity.
Replace with: `FROM freqtradeorg/freqtrade:develop_freqairl@sha256:<digest>`. Get the digest from `docker manifest inspect`. Re-pin via a scheduled bot (Renovate, Dependabot).
5 files, 5 locations
.github/.devcontainer/Dockerfile:1
Dockerfile:1
docker/Dockerfile.armhf:1
docker/Dockerfile.custom:1
docker/Dockerfile.jupyter:1
high Security checks software dependencies conf 0.90 ✓ Repobility 5 occurrences [MINED131] pre-commit hook `https://github.com/pre-commit/mirrors-mypy` pinned to mutable rev `v2.1.0`: `.pre-commit-config.yaml` references `https://github.com/pre-commit/mirrors-mypy` at `rev: v2.1.0`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine.
Pin to a commit SHA: `rev: <40-char-sha>` and bump it through `pre-commit autoupdate` (which writes to PRs that are reviewed).
lines 15, 38, 58, 63, 72
.pre-commit-config.yaml:15, 38, 58, 63, 72 (5 hits)
high Security checks security path traversal conf 0.80 [SEC013] Path Traversal — User Input in File Path: User-controlled input used in file path without sanitization. Allows reading arbitrary files.
Use os.path.realpath() and verify the path starts with your expected base directory. Use secure_filename() for uploads.
freqtrade/optimize/optimize_reports/bt_storage.py:109
high System graph security auth conf 1.00 FastAPI DELETE `blacklist_delete` without auth dependency — freqtrade/rpc/api_server/api_trading.py:288
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:288 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `delete_lock` without auth dependency — freqtrade/rpc/api_server/api_trading.py:305
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:305 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `trade_cancel_open_order` without auth dependency — freqtrade/rpc/api_server/api_trading.py:192
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:192 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI DELETE `trades_delete` without auth dependency — freqtrade/rpc/api_server/api_trading.py:187
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:187 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `add_locks` without auth dependency — freqtrade/rpc/api_server/api_trading.py:315
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:315 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `blacklist_post` without auth dependency — freqtrade/rpc/api_server/api_trading.py:283
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:283 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `delete_lock_pair` without auth dependency — freqtrade/rpc/api_server/api_trading.py:310
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:310 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `force_entry` without auth dependency — freqtrade/rpc/api_server/api_trading.py:235
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:235 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `force_entry` without auth dependency — freqtrade/rpc/api_server/api_trading.py:236
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:236 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `forceexit` without auth dependency — freqtrade/rpc/api_server/api_trading.py:264
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:264 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `forceexit` without auth dependency — freqtrade/rpc/api_server/api_trading.py:265
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:265 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pair_candles_filtered` without auth dependency — freqtrade/rpc/api_server/api_trading.py:349
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:349 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pair_history_filtered` without auth dependency — freqtrade/rpc/api_server/api_pair_history.py:47
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_pair_history.py:47 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pairlists_evaluate` without auth dependency — freqtrade/rpc/api_server/api_download_data.py:51
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_download_data.py:51 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pairlists_evaluate` without auth dependency — freqtrade/rpc/api_server/api_pairlists.py:73
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_pairlists.py:73 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pause` without auth dependency — freqtrade/rpc/api_server/api_trading.py:332
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:332 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pause` without auth dependency — freqtrade/rpc/api_server/api_trading.py:333
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:333 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `pause` without auth dependency — freqtrade/rpc/api_server/api_trading.py:334
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:334 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `reload_config` without auth dependency — freqtrade/rpc/api_server/api_trading.py:339
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:339 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `start` without auth dependency — freqtrade/rpc/api_server/api_trading.py:322
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:322 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `stop` without auth dependency — freqtrade/rpc/api_server/api_trading.py:327
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:327 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `trade_reload` without auth dependency — freqtrade/rpc/api_server/api_trading.py:198
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
freqtrade/rpc/api_server/api_trading.py:198 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'eval_used' in freqtrade/freqai/base_models/BasePyTorchClassifier.py:82
Found a known-risky pattern (eval_used). Review and replace if possible.
freqtrade/freqai/base_models/BasePyTorchClassifier.py:82 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in freqtrade/freqai/base_models/BasePyTorchRegressor.py:50
Found a known-risky pattern (eval_used). Review and replace if possible.
freqtrade/freqai/base_models/BasePyTorchRegressor.py:50 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in freqtrade/freqai/prediction_models/PyTorchTransformerRegressor.py:129
Found a known-risky pattern (eval_used). Review and replace if possible.
freqtrade/freqai/prediction_models/PyTorchTransformerRegressor.py:129 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in freqtrade/freqai/torch/PyTorchModelTrainer.py:137
Found a known-risky pattern (eval_used). Review and replace if possible.
freqtrade/freqai/torch/PyTorchModelTrainer.py:137 Eval used
medium Security checks security auth conf 0.92 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
Add .repobility/access.yml mapping routes to anonymous, authenticated, owner, admin, and super_admin. Keep business-specific rules in the repo so CI can enforce them.
high Security checks security auth conf 0.74 [AUC002] Low visible authorization coverage in route inventory: Only 3.0% of discovered routes show nearby authentication, authorization, middleware, or public-route evidence.
Review the access matrix and add explicit framework auth declarations or policy-file exceptions for intentionally public routes.
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE /blacklist.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
freqtrade/rpc/api_server/api_trading.py:288
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE /trades/{tradeid}.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
freqtrade/rpc/api_server/api_trading.py:187
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: DELETE /trades/{tradeid}/open-order.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
freqtrade/rpc/api_server/api_trading.py:192
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: GET /whitelist.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
freqtrade/rpc/api_server/api_trading.py:295
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /blacklist.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
freqtrade/rpc/api_server/api_trading.py:283
high Security checks security auth conf 0.68 [AUC009] Sensitive function route lacks elevated authorization evidence: A route appears to perform a sensitive function such as export, invite, role, token, billing, or destructive action without elevated policy evidence. Endpoint: POST /trades/{tradeid}/reload.
Require an explicit admin, maintainer, super_admin, or scoped service role in code and .repobility/access.yml.
freqtrade/rpc/api_server/api_trading.py:198
medium Security checks security auth conf 0.72 [AUC012] FastAPI interactive docs may be exposed by framework defaults: FastAPI exposes /docs, /redoc, and /openapi.json by default. Public production APIs should explicitly disable those defaults, protect them behind admin authentication, or publish a reviewed OpenAPI spec with declared security requirements.
Set docs_url=None, redoc_url=None, and openapi_url=None for production apps unless the docs are intentionally public and protected by routing, ingress, or an authenticated docs handler.
low Security checks quality Error handling conf 0.55 ✓ Repobility 12 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
10 files, 12 locations
freqtrade/configuration/deploy_config.py:19, 27 (2 hits)
freqtrade/plugins/pairlist/RemotePairList.py:178, 232 (2 hits)
freqtrade/__init__.py:26
freqtrade/data/entryexitanalysis.py:34
freqtrade/loggers/ft_rich_handler.py:48
freqtrade/loggers/std_err_stream_handler.py:25
freqtrade/rpc/api_server/ws/channel.py:189
freqtrade/strategy/strategy_wrapper.py:26
Error handlingquality
high Security checks cicd CI/CD security conf 0.82 5 occurrences Docker final stage has no non-root USER
Add a non-root USER in the final runtime stage after files and permissions are prepared.
5 files, 5 locations
docker/Dockerfile.custom:1
docker/Dockerfile.freqai:3
docker/Dockerfile.freqai_rl:3
docker/Dockerfile.jupyter:1
docker/Dockerfile.plot:3
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.76 Dockerfile copies broad context with incomplete .dockerignore
Tighten .dockerignore or replace COPY . with explicit COPY statements.
docker/Dockerfile.armhf:49 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.76 Dockerfile copies broad context with incomplete .dockerignore
Tighten .dockerignore or replace COPY . with explicit COPY statements.
Dockerfile:45 CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.86 5 occurrences Dockerfile separates apt update from install
Combine update and install in the same RUN instruction and clean package indexes in that layer.
3 files, 5 locations
Dockerfile:12, 26 (2 hits)
docker/Dockerfile.armhf:12, 26 (2 hits)
.github/.devcontainer/Dockerfile:9
CI/CD securitycontainers
medium Security checks quality Quality conf 0.78 Public web service has no security.txt
Add /.well-known/security.txt with Contact, Expires, Canonical, Preferred-Languages, and Policy fields. Keep the contact endpoint monitored.
.well-known/security.txt
medium Security checks quality Quality conf 0.78 Suspicious implementation file appears unreferenced
Confirm whether this file is reachable. If not, delete it; if yes, wire it through explicit imports, routes, or entry points and add a test that proves the path executes.
build_helpers/pre_commit_update.py:1
medium System graph hardware Security conf 1.00 Dockerfile runs as root: .github/.devcontainer/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 5 occurrences GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
5 files, 5 locations
.github/workflows/ci.yml
.github/workflows/deploy-docs.yml
.github/workflows/devcontainer-build.yml
.github/workflows/docker-build.yml
.github/workflows/packages-cleanup.yml
CI/CD securitySupply chainGithub actions
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — build_helpers/create_command_partials.py:94
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
low Security checks cicd CI/CD security conf 0.72 .dockerignore misses sensitive defaults
Add missing patterns such as .env, .git, private keys, certificates, dependency folders, and local databases.
.dockerignore CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.56 Compose service does not declare a runtime user
Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive.
docker-compose.yml:2 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
docker-compose.yml:2 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.72 3 occurrences Dockerfile keeps pip download cache
Use `pip install --no-cache-dir ...` in container builds.
3 files, 3 locations
Dockerfile:26
docker/Dockerfile.armhf:12
docker/Dockerfile.custom:8
CI/CD securitycontainers
low Security checks quality Quality conf 0.60 30 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 18 locations
freqtrade/data/history/datahandlers/parquetdatahandler.py:9, 89 (2 hits)
freqtrade/freqai/RL/Base5ActionRLEnv.py:15, 32 (2 hits)
freqtrade/freqai/base_models/BasePyTorchClassifier.py:144, 148 (2 hits)
freqtrade/freqai/base_models/BasePyTorchRegressor.py:17, 28 (2 hits)
freqtrade/freqai/base_models/BaseRegressionModel.py:16, 39 (2 hits)
freqtrade/freqai/prediction_models/LightGBMRegressorMultiTarget.py:10, 41 (2 hits)
freqtrade/data/history/datahandlers/idatahandler.py:92
freqtrade/data/history/datahandlers/jsondatahandler.py:12
duplicationquality
high Security checks quality Quality conf 0.62 Source file name looks like an AI patch artifact
Rename it to the domain concept it implements or merge it into the existing module it was meant to change.
build_helpers/pre_commit_update.py:1
low System graph quality Maintenance conf 1.00 45 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph hardware Coverage conf 1.00 Containers defined but no K8s/orchestration manifest found
Repo has Dockerfiles/compose but no Kubernetes/Nomad manifests. If the target deployment is K8s, the manifests may live in a separate ops repo.
Deployment
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: freqtradeorg/freqtrade:develop_freqairl
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
.github/.devcontainer/Dockerfile:1 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:3.14.5-slim-trixie
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:1 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: build_helpers/binance_update_lev_tiers.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: docs/javascripts/config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: freqtrade/__main__.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: freqtrade/config_schema/config_schema.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: freqtrade/constants.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: freqtrade/rpc/api_server/ws/ws_types.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: scripts/rest_client.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 13 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: scripts/ws_client.py:load_config, ft_client/freqtrade_client/ft_client.py:load_config This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
13 occurrences
repo-level (13 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 6 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: freqtrade/strategy/interface.py:adjust_entry_price, freqtrade/strategy/interface.py:adjust_exit_price, freqtrade/strategy/interface.py:adjust_order_price This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn…
6 occurrences
repo-level (6 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: freqtrade/strategy/parameters.py:get_space, freqtrade/strategy/parameters.py:get_space, freqtrade/strategy/parameters.py:get_space, freqtrade/strategy/parameters.py:get_space This is *the* AI-coder failure mode (4× more duplication in vibe-coded repo…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `api_v1` in freqtrade/rpc/api_server/webserver.py:210
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `api_v1` in tests/rpc/test_rpc_apiserver.py:2624
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `create_table_old` in tests/persistence/test_migrations.py:81
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `default_conf_copy` in tests/exchange/test_hyperliquid.py:705
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `informative_copy` in freqtrade/freqai/data_kitchen.py:748
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `limit_buy_order_old` in tests/conftest.py:1793
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `limit_buy_order_old` in tests/freqtradebot/test_freqtradebot.py:1765
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `rename_dict_old` in freqtrade/freqai/RL/BaseReinforcementLearningModel.py:324
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `section_old` in freqtrade/configuration/deprecated_settings.py:16
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `stats_copy` in freqtrade/optimize/optimize_reports/bt_storage.py:83
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `strategy_test_v2` in tests/commands/test_commands.py:1139
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `strategy_test_v2` in tests/strategy/strats/hyperoptable_strategy_v2.py:3
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `strategy_test_v2` in tests/test_strategy_updater.py:17
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_advise_all_indicators_copy` in tests/strategy/test_interface.py:302
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_strategy_safe_wrapper_trade_copy` in tests/strategy/test_strategy_safe_wrapper.py:53
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: adjust_trade_position
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/interface.py:650
low System graph software Dead code conf 1.00 Possibly dead Python function: append_candles_to_dataframe
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/misc.py:255
low System graph software Dead code conf 1.00 Possibly dead Python function: bot_loop_start
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/interface.py:282
low System graph software Dead code conf 1.00 Possibly dead Python function: custom_entry_price
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/interface.py:502
low System graph software Dead code conf 1.00 Possibly dead Python function: custom_exit_price
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/interface.py:530
low System graph software Dead code conf 1.00 Possibly dead Python function: custom_roi
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/interface.py:473
low System graph software Dead code conf 1.00 Possibly dead Python function: custom_stake_amount
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/interface.py:621
low System graph software Dead code conf 1.00 Possibly dead Python function: log_took_too_long
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/freqtradebot.py:181
low System graph software Dead code conf 1.00 Possibly dead Python function: order_filled
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/interface.py:428
low System graph software Dead code conf 1.00 Possibly dead Python function: plot_annotations
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/interface.py:872
low System graph software Dead code conf 1.00 Possibly dead Python function: populate_any_indicators
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/interface.py:890
low System graph software Dead code conf 1.00 Possibly dead Python function: retrieve_progress_tracker
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/util/progress_tracker.py:13
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_arguments
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/strategyupdater.py:157
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_Attribute
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/strategyupdater.py:196
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_ClassDef
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/strategyupdater.py:211
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_Constant
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/strategyupdater.py:274
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_Expr
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/strategyupdater.py:144
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_FunctionDef
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/strategyupdater.py:191
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_If
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/strategyupdater.py:186
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_Import
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/strategyupdater.py:173
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_ImportFrom
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/strategyupdater.py:180
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_Name
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/strategyupdater.py:163
low System graph software Dead code conf 1.00 Possibly dead Python function: visit_Subscript
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
freqtrade/strategy/strategyupdater.py:239
low System graph quality Integrity conf 1.00 Stub function `log_scalar` (body is just `pass`/`return`) — freqtrade/freqai/tensorboard/base_tensorboard.py:15
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `shutdown` (body is just `pass`/`return`) — freqtrade/strategy/interface.py:205
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /backtest
`freqtrade/rpc/api_server/api_backtest.py` declares `DELETE /backtest` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /backtest/history/{file}
`freqtrade/rpc/api_server/api_backtest.py` declares `DELETE /backtest/history/{file}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /trades/{tradeid}
`freqtrade/rpc/api_server/api_trading.py` declares `DELETE /trades/{tradeid}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /available_pairs
`freqtrade/rpc/api_server/api_webserver.py` declares `GET /available_pairs` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /background
`freqtrade/rpc/api_server/api_background_tasks.py` declares `GET /background` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /background/{jobid}
`freqtrade/rpc/api_server/api_background_tasks.py` declares `GET /background/{jobid}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consu…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /backtest
`freqtrade/rpc/api_server/api_backtest.py` declares `GET /backtest` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /backtest/abort
`freqtrade/rpc/api_server/api_backtest.py` declares `GET /backtest/abort` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /backtest/history
`freqtrade/rpc/api_server/api_backtest.py` declares `GET /backtest/history` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /backtest/history/result
`freqtrade/rpc/api_server/api_backtest.py` declares `GET /backtest/history/result` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /backtest/history/{file}/market_change
`freqtrade/rpc/api_server/api_backtest.py` declares `GET /backtest/history/{file}/market_change` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documentin…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /backtest/history/{file}/{strategy}/wallet
`freqtrade/rpc/api_server/api_backtest.py` declares `GET /backtest/history/{file}/{strategy}/wallet` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or docume…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /balance
`freqtrade/rpc/api_server/api_trading.py` declares `GET /balance` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /count
`freqtrade/rpc/api_server/api_trading.py` declares `GET /count` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /daily
`freqtrade/rpc/api_server/api_trading.py` declares `GET /daily` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /entries
`freqtrade/rpc/api_server/api_trading.py` declares `GET /entries` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /exchanges
`freqtrade/rpc/api_server/api_webserver.py` declares `GET /exchanges` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /exits
`freqtrade/rpc/api_server/api_trading.py` declares `GET /exits` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /fallback_file.html
`freqtrade/rpc/api_server/web_ui.py` declares `GET /fallback_file.html` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /freqaimodels
`freqtrade/rpc/api_server/api_webserver.py` declares `GET /freqaimodels` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /historic_balance
`freqtrade/rpc/api_server/api_trading.py` declares `GET /historic_balance` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /hyperoptloss
`freqtrade/rpc/api_server/api_webserver.py` declares `GET /hyperoptloss` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /logs
`freqtrade/rpc/api_server/api_v1.py` declares `GET /logs` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /markets
`freqtrade/rpc/api_server/api_v1.py` declares `GET /markets` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /mix_tags
`freqtrade/rpc/api_server/api_trading.py` declares `GET /mix_tags` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /monthly
`freqtrade/rpc/api_server/api_trading.py` declares `GET /monthly` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /pair_history
`freqtrade/rpc/api_server/api_pair_history.py` declares `GET /pair_history` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /pairlists/available
`freqtrade/rpc/api_server/api_pairlists.py` declares `GET /pairlists/available` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /pairlists/evaluate/{jobid}
`freqtrade/rpc/api_server/api_pairlists.py` declares `GET /pairlists/evaluate/{jobid}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who cons…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /performance
`freqtrade/rpc/api_server/api_trading.py` declares `GET /performance` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /plot_config
`freqtrade/rpc/api_server/api_v1.py` declares `GET /plot_config` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /profit
`freqtrade/rpc/api_server/api_trading.py` declares `GET /profit` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /profit_all
`freqtrade/rpc/api_server/api_trading.py` declares `GET /profit_all` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /show_config
`freqtrade/rpc/api_server/api_v1.py` declares `GET /show_config` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /stats
`freqtrade/rpc/api_server/api_trading.py` declares `GET /stats` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /strategies
`freqtrade/rpc/api_server/api_webserver.py` declares `GET /strategies` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /strategy/{strategy}
`freqtrade/rpc/api_server/api_v1.py` declares `GET /strategy/{strategy}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /sysinfo
`freqtrade/rpc/api_server/api_v1.py` declares `GET /sysinfo` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /trade/{tradeid}
`freqtrade/rpc/api_server/api_trading.py` declares `GET /trade/{tradeid}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /trades
`freqtrade/rpc/api_server/api_trading.py` declares `GET /trades` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /ui_version
`freqtrade/rpc/api_server/web_ui.py` declares `GET /ui_version` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /weekly
`freqtrade/rpc/api_server/api_trading.py` declares `GET /weekly` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /{rest_of_path:path}
`freqtrade/rpc/api_server/web_ui.py` declares `GET /{rest_of_path:path}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: PATCH /backtest/history/{file}
`freqtrade/rpc/api_server/api_backtest.py` declares `PATCH /backtest/history/{file}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consum…
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /backtest
`freqtrade/rpc/api_server/api_backtest.py` declares `POST /backtest` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /download_data
`freqtrade/rpc/api_server/api_download_data.py` declares `POST /download_data` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /pair_history
`freqtrade/rpc/api_server/api_pair_history.py` declares `POST /pair_history` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /pairlists/evaluate
`freqtrade/rpc/api_server/api_pairlists.py` declares `POST /pairlists/evaluate` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /token/login
`freqtrade/rpc/api_server/api_auth.py` declares `POST /token/login` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /token/refresh
`freqtrade/rpc/api_server/api_auth.py` declares `POST /token/refresh` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: freqtrade/config_schema/config_schema.py (1508 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: freqtrade/exchange/exchange.py (4149 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: freqtrade/freqtradebot.py (2647 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: freqtrade/optimize/backtesting.py (1914 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: freqtrade/persistence/trade_model.py (2161 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: freqtrade/rpc/rpc.py (1831 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: freqtrade/rpc/telegram.py (2285 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: freqtrade/strategy/interface.py (1886 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/commands/test_commands.py (2113 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/conftest.py (3459 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/exchange/test_exchange.py (6828 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/freqtradebot/test_freqtradebot.py (5917 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/optimize/test_backtest_detail.py (1406 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/optimize/test_backtesting.py (2877 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/persistence/test_persistence.py (2941 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/plugins/test_pairlist.py (2909 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/rpc/test_rpc.py (1540 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/rpc/test_rpc_apiserver.py (3676 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/rpc/test_rpc_telegram.py (3066 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: tests/test_configuration.py (1623 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/155326e5-9f75-4622-9ba3-83af963d25db/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/155326e5-9f75-4622-9ba3-83af963d25db/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.