Showing profit percentage margin on an item page

Is there a way that I can show the % profit margin per item on a product page?

Hi,

There are 2 ways - custom coding and app

Example of custom code will be at product.liquid or similar where you want to display the profit margin

{% assign cost_price = product.cost | money %}
{% assign selling_price = product.price | money %}

{% assign profit_margin = (selling_price - cost_price) | divided_by: selling_price | times: 100 | round: 2 %}

Profit Margin: {{ profit_margin }}%