Type/to search

Delta Volume with Fibonacci Levels Trading Strategy

Common strategy
Created: 2024-05-15 10:45:58
Last modified: 2 years ago
1
Follow
1802
Followers

img

Overview

This strategy is a trading strategy based on Delta Volume and Fibonacci Retracement. It determines the market trend by comparing the volume of buyers and sellers over a period of time, while using Fibonacci retracement lines to determine entry and exit points. When the buyer's volume exceeds the seller's volume and the price breaks through the 61.8% Fibonacci retracement line, it enters a long position; when the seller's volume exceeds the buyer's volume and the price falls below the 38.2% Fibonacci retracement line, it closes the position.

Strategy Principle

  1. Calculate the buyer's volume and seller's volume for the specified period and store them in arrays.
  2. Calculate the Delta Volume, which is the buyer's volume minus the seller's volume.
  3. Calculate the highest and lowest prices for the specified period, and calculate the 38.2% and 61.8% Fibonacci retracement lines based on them.
  4. When the Delta Volume is greater than 0 (buyer's volume is greater than seller's volume) and the closing price is higher than the 61.8% Fibonacci retracement line, open a long position.
  5. When the Delta Volume is less than 0 (seller's volume is greater than buyer's volume) and the closing price is lower than the 38.2% Fibonacci retracement line, close the position.

Strategy Advantages

  1. By combining volume and price dimensions, it can more comprehensively judge the market trend.
  2. Using Fibonacci retracement lines as entry and exit points has clear technical support.
  3. Delta Volume indicator can reflect the supply and demand relationship in the market, which is a leading indicator.
  4. Parameters are adjustable and applicable to different markets and trading varieties.

Strategy Risks

  1. In the oscillating market, frequent entries and exits may lead to higher transaction costs.
  2. If the market fluctuates drastically, prices may quickly break through Fibonacci retracement lines, leading to missing the best entry and exit points.
  3. The strategy relies on historical data for calculation. For newly listed trading varieties or data missing situations, it may affect the effectiveness of the strategy.

Strategy Optimization Direction

  1. Consider introducing other technical indicators, such as moving averages, RSI, etc., to confirm trends and entry/exit points.
  2. For different markets and trading varieties, optimize the calculation period and parameters of Delta Volume and Fibonacci Retracement.
  3. After entering a position, set a trailing stop loss or take profit to control risk and lock in profits.
  4. Combine with market sentiment indicators, such as the Fear & Greed Index, to dynamically adjust the strategy.

Summary

By combining Delta Volume and Fibonacci Retracement lines, this strategy enters when a trend is forming and exits when the trend may reverse, in order to capture the main trend of the market. However, it may face the risk of frequent trading in the oscillating market, so it needs to be optimized with other indicators and risk control measures. Overall, the strategy is clear in thought, logically rigorous, and can be used as a basic strategy for further development and application.

Source
Pine
/*backtest
start: 2023-05-09 00:00:00
end: 2024-05-14 00:00:00
period: 1d
basePeriod: 1h
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=5
strategy("Delta Volume with Fibonacci Levels Strategy", overlay=true)

// Input pour la période de calcul du volume et du delta
Strategy parameters
Strategy parameters
Période du Delta Volume (Optional)
Fibonacci Lookback Period (Optional)
Entry Price Type (Optional)
Exit Price Type (Optional)
Start Date (Optional)
End Date (Optional)
Comment
All comments (0)
No data
No data
  • 1
Forums
PINE Language
Get the app
iPhone Download
© 2015 - ∞ INVENTOR PTE LTD (SG)