Compute Williams %R In VB.NET?

7 minutes read

To compute Williams %R in VB.NET, you can use the following formula:


Williams %R = (Highest High - Close) / (Highest High - Lowest Low) * -100


You will need to iterate through your data to calculate the Highest High and Lowest Low values, and then use these values along with the closing price to calculate the Williams %R value for each data point.

Best Trading Sites for Beginners & Experts in 2024

1
FinViz

Rating is 5 out of 5

FinViz

2
TradingView

Rating is 4.9 out of 5

TradingView

3
FinQuota

Rating is 4.8 out of 5

FinQuota

4
Yahoo Finance

Rating is 4.7 out of 5

Yahoo Finance


What are some common strategies for trading with Williams %R?

  1. Overbought and oversold levels: Traders often use the overbought (above -20) and oversold (below -80) levels of Williams %R to identify potential entry and exit points. They may look to sell or short a security when it is overbought and buy or go long when it is oversold.
  2. Divergence: Traders also look for divergence between the price of a security and Williams %R. If the price is making new highs but Williams %R is not confirming those highs, it could be a sign of weakness and a potential reversal.
  3. Reversal patterns: Traders may look for reversal patterns in Williams %R, such as double tops/bottoms or head and shoulders patterns, to signal potential changes in trend.
  4. Crossovers: Traders also look for crossovers of Williams %R with key levels, such as the -50 level. A bullish crossover above -50 could signal a buying opportunity, while a bearish crossover below -50 could signal a selling opportunity.
  5. Confirmation with other indicators: Traders may use Williams %R in conjunction with other technical indicators, such as moving averages or volume analysis, to confirm signals and improve their trading decisions.


How to calculate Williams %R for multiple securities in VB.NET?

You can calculate Williams %R for multiple securities in VB.NET by first creating a function that takes in the necessary parameters such as the list of security prices, period for calculation, and the number of securities. Here is an example code snippet that demonstrates how to calculate Williams %R for multiple securities:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
Function CalculateWilliamsR(securityPrices As List(Of List(Of Double)), period As Integer, numSecurities As Integer) As List(Of List(Of Double))
    Dim result As New List(Of List(Of Double))

    For i As Integer = 0 To numSecurities - 1
        Dim currentSecurityPrices As List(Of Double) = securityPrices(i)
        Dim currentWilliamsRValues As New List(Of Double)

        For j As Integer = period To currentSecurityPrices.Count - 1
            Dim highestHigh As Double = currentSecurityPrices.GetRange(j - period, period).Max()
            Dim lowestLow As Double = currentSecurityPrices.GetRange(j - period, period).Min()
            Dim currentPrice As Double = currentSecurityPrices(j)

            Dim williamsR As Double = (highestHigh - currentPrice) / (highestHigh - lowestLow) * -100
            currentWilliamsRValues.Add(williamsR)
        Next

        result.Add(currentWilliamsRValues)
    Next

    Return result
End Function


You can call this function by passing a list of lists of security prices, the period for calculation, and the number of securities. The function will return a list of lists of Williams %R values for each security.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
Dim securityPrices As New List(Of List(Of Double)) From {
    New List(Of Double) From {10.0, 12.0, 11.0, 14.0, 13.0},
    New List(Of Double) From {20.0, 18.0, 22.0, 24.0, 23.0}
}

Dim period As Integer = 14
Dim numSecurities As Integer = 2

Dim williamsRValues As List(Of List(Of Double)) = CalculateWilliamsR(securityPrices, period, numSecurities)

For i As Integer = 0 To numSecurities - 1
    Console.WriteLine("Williams %R values for security " & i + 1 & ": " & String.Join(", ", williamsRValues(i)))
Next


This code snippet demonstrates how to calculate Williams %R for two securities with given price data and period. You can modify the input parameters and adapt the code to fit your specific requirements.


How to export Williams %R data for further analysis in VB.NET?

To export Williams %R data for further analysis in VB.NET, you can follow these steps:

  1. Retrieve Williams %R data: First, you need to retrieve the Williams %R data from your source, such as a database or API. You can use a library or API to fetch the data.
  2. Convert the data into a suitable format: Once you have retrieved the Williams %R data, convert it into a suitable format for exporting, such as a CSV file or Excel spreadsheet. You can use libraries like CsvHelper or ExcelDataReader to help with this conversion.
  3. Write the data to a file: Use StreamWriter or similar classes in VB.NET to write the data to a file. Make sure to include headers or labels for each column to make it easier for further analysis.
  4. Save the file: Save the file to a location of your choice on your local machine or a server. You can prompt the user to select a location or define a default location for saving the file.


By following these steps, you can export Williams %R data for further analysis in VB.NET. You can then read the data from the exported file and perform additional analysis or visualizations as needed.


What is the formula for Williams %R in VB.NET?

There isn't a specific built-in function in VB.NET for calculating the Williams %R indicator, but you can easily calculate it using the following formula:


Williams %R = ((Highest High - Close) / (Highest High - Lowest Low)) * -100


Here's an example code snippet in VB.NET to calculate Williams %R:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
Function WilliamsR(highs As List(Of Double), lows As List(Of Double), closes As List(Of Double), length As Integer) As List(Of Double)
    Dim result As New List(Of Double)

    For i As Integer = 0 To highs.Count - 1
        If i < length - 1 Then
            result.Add(0)
        Else
            Dim highestHigh As Double = highs.GetRange(i - length + 1, length).Max()
            Dim lowestLow As Double = lows.GetRange(i - length + 1, length).Min()
            Dim williamsR As Double = ((highestHigh - closes(i)) / (highestHigh - lowestLow)) * -100
            result.Add(williamsR)
        End If
    Next

    Return result
End Function


You can call this function with lists of high, low, and close prices along with the length parameter for the Williams %R calculation.

Facebook Twitter LinkedIn

Related Posts:

Williams %R, also known as %R, is a technical indicator that measures the level of overbought or oversold conditions in the market. Developed by Larry Williams, %R is a momentum oscillator that resembles the stochastic oscillator.The Williams %R indicator is u...