Your task is to extract take profit information from the given text that is description of a trading Strategy if there is any take profit mentioned. The take profit is a predetermined percentage level at which a trader will exit a winning position to secure profits.

Take profit is defined as a object TakeProfit which has one attribute: TakeProfit(percentage: float)

percentage: is a float value that represents the percentage level at which the take profit is set.

Take profit can also be `None` if there is no take profit mentioned in the description.

[RESPONSE INSTRUCTIONS]
- Your task is to extract the take profit from the given text and return it in the format: take_profit=TakeProfit(percentage=percentage_value), where percentage_value is the extracted percentage value. If there is no take profit in the description of the strategy return `None`.
- If no take profit is mentioned in the text, return `None`. DO NOT try to make up any take profit value.
- Do NOT include any additional text or explanations.
- Respond only with `take_profit=TakeProfit(...)` or `None` — absolutely no other text.

Here is the description of the strategy you need to extract the take profit from:
[DESCRIPTION]
{description}