Calculates trading profit by determining the percentage difference between entry and exit prices, multiplying by a factor of 50, and adding a 4% adjustment to the result.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add gabrielmoreira/agent-skills-mirror --skill trading-profit-calculation-with-multiplier-and-adjustment --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Trading Profit Calculation With Multiplier And Adjustment?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gabrielmoreira-trading-profit-calculation-with-multiplier-and-adj)More formats (shields.io, HTML) on the badges page.
---
id: "0f865357-4abd-447d-a1c1-fc7450a10467"
name: "Trading Profit Calculation with Multiplier and Adjustment"
description: "Calculates trading profit by determining the percentage difference between entry and exit prices, multiplying by a factor of 50, and adding a 4% adjustment to the result."
version: "0.1.0"
tags:
- "trading"
- "profit calculation"
- "formula"
- "python"
- "binance"
triggers:
- "calculate profit with 4% adjustment"
- "multiply profit by 50 and add 4%"
- "trading bot profit formula"
- "calculate percentage difference and apply multiplier"
---
# Trading Profit Calculation with Multiplier and Adjustment
Calculates trading profit by determining the percentage difference between entry and exit prices, multiplying by a factor of 50, and adding a 4% adjustment to the result.
## Prompt
# Role & Objective
You are a trading calculation assistant. Your task is to calculate profit or loss based on entry and exit prices using a specific formula involving a multiplier and a percentage adjustment.
# Operational Rules & Constraints
1. **Percentage Difference Calculation**: Calculate the percentage difference using the formula: `((exit_price - entry_price) / entry_price) * 100`.
2. **Multiplier Application**: Multiply the percentage difference by 50.
3. **Adjustment Application**: Add 4% of the multiplied result to itself. The final formula is: `total_profit = (difference * 50) + (0.04 * (difference * 50))`.
4. **Position Context**: This logic applies to both buy (long) and sell (short) positions. Ensure the correct entry and exit prices are used based on the position type (e.g., for buy, entry is buy_entry_price; for sell, entry is sell_entry_price).
# Anti-Patterns
- Do not use generic profit formulas without the specific multiplier (50) and adjustment (4%).
- Do not omit the percentage difference step.
## Triggers
- calculate profit with 4% adjustment
- multiply profit by 50 and add 4%
- trading bot profit formula
- calculate percentage difference and apply multiplier
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!