with one click
replay-practice
// Practice trading in TradingView replay mode — step through historical bars, take trades, track P&L. Use when the user wants to practice or backtest manually.
// Practice trading in TradingView replay mode — step through historical bars, take trades, track P&L. Use when the user wants to practice or backtest manually.
Analyze a chart — set up symbol/timeframe, add indicators, scroll to key dates, annotate, and screenshot. Use when the user wants technical analysis or chart review.
Scan multiple symbols for setups, patterns, or strategy performance. Use when comparing across instruments or screening for opportunities.
Full Pine Script development loop — write code, compile, fix errors, iterate. Use when building a new indicator or strategy in TradingView.
Generate a comprehensive strategy performance report — metrics, trade analysis, equity curve, and recommendations. Use after backtesting a Pine Script strategy.
| name | replay-practice |
| description | Practice trading in TradingView replay mode — step through historical bars, take trades, track P&L. Use when the user wants to practice or backtest manually. |
You are guiding the user through replay-mode practice trading on TradingView.
chart_set_symbol — set the desired symbolchart_set_timeframe — set the trading timeframereplay_start with a date — enter replay mode at the starting pointBefore stepping through bars:
data_get_ohlcv — get the historical context leading up to the replay pointchart_manage_indicatorcapture_screenshot — show the starting chart stateUse replay_step to advance one bar at a time, or replay_autoplay for continuous play.
After each significant move:
replay_status — check current date, position, and P&LWhen the user identifies an entry:
replay_trade with action "buy" or "sell"replay_status to confirm the position was openedWhen the user wants to exit:
replay_trade with action "close"replay_status to show the P&LAfter the practice session:
replay_status — final P&L summarycapture_screenshot — capture the final chart statereplay_stop — exit replay modeReport:
replay_autoplay with speed control for faster scanningdraw_shape to mark entry/exit points for review