
This strategy is an intelligent trading system based on price volatility spike detection. The strategy monitors price movements on the 1-hour candlestick chart and triggers trading signals when significant upward or downward spikes occur. The system uses a fixed investment amount of 30,000 USDT and automatically calculates trading quantities based on current market prices to achieve optimal capital allocation.
The core of the strategy is to identify price volatility spikes through the detect_spike function. When price movement exceeds 0.62%, the system determines it as a valid trading signal. Specifically includes: 1. Bullish spike determination: when (high price - closing price)/closing price >= 0.62% 2. Bearish spike determination: when (closing price - low price)/closing price >= 0.62% The strategy adopts a fixed take-profit rate of 0.42% and stop-loss rate of 1%, automatically executing trades and setting corresponding profit and loss levels after triggering signals.
The strategy identifies market opportunities through rigorous mathematical models and combines a comprehensive risk control system to achieve stable trading returns. The strategy has good scalability and optimization potential, and through continuous improvement can adapt to different market environments, making it a practical quantitative trading strategy.
/*backtest
start: 2024-11-08 00:00:00
end: 2025-02-18 08:00:00
period: 3h
basePeriod: 3h
exchanges: [{"eid":"Binance","currency":"BTC_USDT"}]
*/
//@version=6
strategy("Spike Strategy 1h Optimized", overlay=true, margin_long=100, margin_short=100, default_qty_type=strategy.percent_of_equity, default_qty_value=100)
// Fixed investment amount per trade (30,000 USDT)
fixed_investment = 30000
// Optimized parameters
spike_threshold = 0.62 // Spike threshold (0.80%)
profit_target = 0.42 // Take profit (0.48%)
stop_loss = 1 // Stop loss (10%)
// Function to detect spikes
detect_spike(threshold, close_price, high_price, low_price) =>
spike_up = (high_price - close_price) / close_price >= threshold / 100 // Bullish spike (high - close)
spike_down = (close_price - low_price) / close_price >= threshold / 100 // Bearish spike (close - low)
[spike_up, spike_down]
// Detecting spikes
[spike_up, spike_down] = request.security(syminfo.tickerid, "60", detect_spike(spike_threshold, close, high, low))
// Entry conditions
long_condition = spike_up and not spike_down // Only bullish spikes
short_condition = spike_down and not spike_up // Only bearish spikes
// Calculate the quantity to invest based on the current price
qty_long = fixed_investment / close
qty_short = fixed_investment / close
// Executing the orders
if (long_condition)
strategy.entry("Long", strategy.long, qty=qty_long)
if (short_condition)
strategy.entry("Short", strategy.short, qty=qty_short)
// Exiting orders with take profit and stop loss
if (strategy.position_size > 0)
strategy.exit("Take Profit Long", "Long", limit=strategy.position_avg_price * (1 + profit_target / 100), stop=strategy.position_avg_price * (1 - stop_loss / 100))
if (strategy.position_size < 0)
strategy.exit("Take Profit Short", "Short", limit=strategy.position_avg_price * (1 - profit_target / 100), stop=strategy.position_avg_price * (1 + stop_loss / 100))
// Plot spikes (optional)
plotshape(series=long_condition, title="Long Spike", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=short_condition, title="Short Spike", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")