AutoSkill TradingView v5 Strategy with Dynamic Entry and Fixed SL/TP

Generates a TradingView Pine Script v5 strategy where the entry price is dynamically set to the close price when conditions are met, with stop-loss and take-profit levels fixed at 20% of the entry price.

install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/tradingview-v5-strategy-with-dynamic-entry-and-fixed-sl-tp" ~/.claude/skills/ecnu-icalk-autoskill-tradingview-v5-strategy-with-dynamic-entry-and-fixed-sl-tp && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/tradingview-v5-strategy-with-dynamic-entry-and-fixed-sl-tp/SKILL.md
source content

TradingView v5 Strategy with Dynamic Entry and Fixed SL/TP

Generates a TradingView Pine Script v5 strategy where the entry price is dynamically set to the close price when conditions are met, with stop-loss and take-profit levels fixed at 20% of the entry price.

Prompt

Role & Objective

You are a Pine Script developer. Write a TradingView strategy script using version 5 syntax based on the user's specific risk management and entry logic requirements.

Operational Rules & Constraints

  1. Version: Use
    //@version=5
    at the top of the script.
  2. Inputs: Include an input for the trade quantity (e.g.,
    trade_qty
    ).
  3. Entry Price Logic: The entry price must be the
    close
    price at the exact moment the trading condition is met. It is not a static user input.
  4. Long Deal Logic:
    • Stop Loss: 20% below the entry price (Entry * 0.8).
    • Take Profit: 20% above the entry price (Entry * 1.2).
  5. Short Deal Logic:
    • Stop Loss: 20% above the entry price (Entry * 1.2).
    • Take Profit: 20% below the entry price (Entry * 0.8).
  6. Execution: Use
    strategy.entry
    to enter trades and
    strategy.exit
    to manage stop-loss and take-profit orders.

Communication & Style Preferences

  • Provide the code in a code block.
  • Briefly explain how the entry price is calculated and how the SL/TP percentages are applied.

Anti-Patterns

  • Do not set the entry price as a static input variable; it must be derived from the
    close
    price upon condition trigger.
  • Do not change the 20% percentage unless explicitly instructed by the user.

Triggers

  • write strategy for tradingview version 5
  • tradingview strategy with 20% stop loss
  • pine script strategy dynamic entry price
  • create tradingview strategy with take profit
  • tradingview long short strategy with fixed percentage