Chiến lược theo dõi sức mạnh gấu được thiết kế dựa trên chỉ số Elder Ray của Tiến sĩ Alexander Elder để đo áp lực mua và bán trên thị trường.
Chỉ số cốt lõi của chiến lược này là Bear Power, được tính bằng cách trừ EMA 13 ngày từ giá thấp hàng ngày. Nó phản ánh khả năng của người bán đẩy giá xuống dưới mức đồng thuận trung bình về giá trị.
Khi Bear Power vượt qua ngưỡng đã chỉ định, một vị trí dài được mở. Khi nó vượt qua dưới, một vị trí ngắn được mở.
Ngoài ra, hướng dài / ngắn cũng có thể được chuyển đổi thông qua tham số Boolean
Chiến lược đơn giản và dễ thực hiện với một chỉ số đánh giá hướng.
Những lợi thế của chiến lược này bao gồm:
Ngoài ra còn có một số rủi ro:
Xác nhận với nhiều chỉ số, dừng lỗ và điều chỉnh tham số có thể giúp tối ưu hóa nó.
Một số hướng để tối ưu hóa chiến lược:
Chiến lược theo dõi sức mạnh gấu có một khái niệm đơn giản về việc đánh giá bước vào và bước ra bằng cách so sánh một chỉ số với ngưỡng.
/*backtest start: 2023-12-01 00:00:00 end: 2023-12-31 23:59:59 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version = 2 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 07/12/2016 // Developed by Dr Alexander Elder, the Elder-ray indicator measures buying // and selling pressure in the market. The Elder-ray is often used as part // of the Triple Screen trading system but may also be used on its own. // Dr Elder uses a 13-day exponential moving average (EMA) to indicate the // market consensus of value. Bear Power measures the ability of sellers to // drive prices below the consensus of value. Bear Power reflects the ability // of sellers to drive prices below the average consensus of value. // Bull Power is calculated by subtracting the 13-day EMA from the day's High. // Bear power subtracts the 13-day EMA from the day's Low. // You can use in the xPrice any series: Open, High, Low, Close, HL2, HLC3, OHLC4 and ect... // You can change long to short in the Input Settings // Please, use it only for learning or paper trading. Do not for real trading. //////////////////////////////////////////////////////////// strategy(title="Elder Ray (Bear Power) Strategy Backtest") Length = input(13, minval=1) Trigger = input(0) reverse = input(false, title="Trade reverse") hline(0, color=purple, linestyle=line) xPrice = close xMA = ema(xPrice,Length) DayLow = iff(dayofmonth != dayofmonth[1], low, min(low, nz(DayLow[1]))) nRes = DayLow - xMA pos = iff(nRes > Trigger, 1, iff(nRes < Trigger, -1, nz(pos[1], 0))) possig = iff(reverse and pos == 1, -1, iff(reverse and pos == -1, 1, pos)) if (possig == 1) strategy.entry("Long", strategy.long) if (possig == -1) strategy.entry("Short", strategy.short) barcolor(possig == -1 ? red: possig == 1 ? green : blue ) plot(nRes, color=blue, title="Bear Power", style = histogram)