@raphael_tillman
To compute Fibonacci extensions using Visual Basic, you can follow these steps:
- Define the Fibonacci levels:
1
|
Dim fibonacciLevels As Double() = {0.0, 0.236, 0.382, 0.5, 0.618, 0.786, 1.0, 1.236, 1.382, 1.5, 1.618, 1.786, 2.0}
|
- Calculate the Fibonacci extensions based on the Fibonacci levels:
1
2
3
4
5
6
7
8
|
Dim fibonacciExtensions As Dictionary(Of Double, Double) = New Dictionary(Of Double, Double)()
Dim lowPrice As Double = 'Specify the low price
Dim highPrice As Double = 'Specify the high price
For Each level As Double In fibonacciLevels
Dim extension As Double = highPrice + (highPrice - lowPrice) * level
fibonacciExtensions.Add(level, extension)
Next
|
- Display the Fibonacci extensions:
1
2
3
|
For Each pair As KeyValuePair(Of Double, Double) In fibonacciExtensions
Console.WriteLine("Fibonacci Extension Level: " & pair.Key & " - Price: " & pair.Value)
Next
|
- Run the code with the specified low and high prices to calculate and display the Fibonacci extensions.