Skip to content

Commit

Permalink
update domain name (#921)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender authored Oct 16, 2022
1 parent 46c4081 commit e64d14e
Show file tree
Hide file tree
Showing 96 changed files with 113 additions and 115 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
BUNDLE_GEMFILE="${{github.workspace}}/docs/GemFile" bundle exec htmlproofer _site \
--assume-extension \
--http-status-ignore "403,429,503,999" \
--url-swap "https\://daveskender.github.io/Stock.Indicators:http\://127.0.0.1:4000"
--url-swap "https\://dotnet.stockindicators.dev:http\://127.0.0.1:4000"
- name: Show environment
working-directory: docs
Expand Down
1 change: 1 addition & 0 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Contributors:
https://github.com/DaveSkender/Stock.Indicators/contributors

Project site:
https://dotnet.stockindicators.dev
https://daveskender.github.io/Stock.Indicators

GitHub Repository:
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![image](https://raw.githubusercontent.com/DaveSkender/Stock.Indicators/main/docs/assets/social-banner.png)](https://daveskender.github.io/Stock.Indicators/)
[![image](https://raw.githubusercontent.com/DaveSkender/Stock.Indicators/main/docs/assets/social-banner.png)](https://dotnet.stockindicators.dev/)

[![NuGet package](https://img.shields.io/nuget/v/skender.stock.indicators?color=blue&logo=NuGet&label=NuGet%20Package)](https://www.nuget.org/packages/Skender.Stock.Indicators)
[![Nuget](https://img.shields.io/nuget/dt/skender.stock.indicators?logo=NuGet&label=Downloads)](https://www.nuget.org/packages/Skender.Stock.Indicators)
Expand All @@ -8,13 +8,13 @@

**Stock Indicators for .NET** is a C# [library package](https://www.nuget.org/packages/Skender.Stock.Indicators) that produces financial market technical indicators. Send in historical price quotes and get back desired indicators such as moving averages, Relative Strength Index, Stochastic Oscillator, Parabolic SAR, etc. Nothing more.

It can be used in any market analysis software using standard [OHLCV price quotes](https://daveskender.github.io/Stock.Indicators/guide/#historical-quotes) for equities, commodities, forex, cryptocurrencies, and others. We had private trading algorithms, machine learning, and charting systems in mind when originally creating this library.
It can be used in any market analysis software using standard [OHLCV price quotes](https://dotnet.stockindicators.dev/guide/#historical-quotes) for equities, commodities, forex, cryptocurrencies, and others. We had private trading algorithms, machine learning, and charting systems in mind when originally creating this library.

Visit our project site for more information:

- [Overview](https://daveskender.github.io/Stock.Indicators/)
- [Indicators and overlays](https://daveskender.github.io/Stock.Indicators/indicators/)
- [Guide and Pro tips](https://daveskender.github.io/Stock.Indicators/guide/)
- [Overview](https://dotnet.stockindicators.dev/)
- [Indicators and overlays](https://dotnet.stockindicators.dev/indicators/)
- [Guide and Pro tips](https://dotnet.stockindicators.dev/guide/)
- [Demo site](https://stock-charts.azurewebsites.net) (a stock chart)
- [Release notes](https://github.com/DaveSkender/Stock.Indicators/releases)
- [Discussions](https://github.com/DaveSkender/Stock.Indicators/discussions)
Expand Down
Binary file modified docs/.offline/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/.offline/banner.xcf
Binary file not shown.
3 changes: 0 additions & 3 deletions docs/_layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@
</header>

<main id="content" class="main-content" role="main">
<!-- temporary -->
<p style="color:red;text-align:center;">This site will be unavailable from October 16-18. <a href="https://github.com/DaveSkender/Stock.Indicators/discussions/920">more info</a></p>
<!-- temporary -->
{{ content }}
</main>
</body>
Expand Down
Binary file modified docs/assets/social-banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Use the [Discussions](https://github.com/DaveSkender/Stock.Indicators/discussion

### Performance benchmarking

Running the `Tests.Performance` console application in `Release` mode will produce performance data that we periodically include in the [repo documentation](https://daveskender.github.io/Stock.Indicators/performance/).
Running the `Tests.Performance` console application in `Release` mode will produce performance data that we periodically include in the [repo documentation](https://dotnet.stockindicators.dev/performance/).

```bash
# run all performance benchmarks
Expand Down
4 changes: 2 additions & 2 deletions docs/examples/CustomIndicators/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ layout: page

At some point in your journey, you may want to create your own custom indicators.
The following is an example of how you'd create your own.
This example is also included in our [example usage code](https://daveskender.github.io/Stock.Indicators/examples/#content).
This example is also included in our [example usage code](https://dotnet.stockindicators.dev/examples/#content).

## STEP 1: Create the Results class

Create your results class by extending the library `ResultBase` class. This will allow you to inherit many of the [utility functions](https://daveskender.github.io/Stock.Indicators/utilities/#utilities-for-indicator-results), such as `RemoveWarmupPeriods()`.
Create your results class by extending the library `ResultBase` class. This will allow you to inherit many of the [utility functions](https://dotnet.stockindicators.dev/utilities/#utilities-for-indicator-results), such as `RemoveWarmupPeriods()`.

```csharp
using Skender.Stock.Indicators;
Expand Down
2 changes: 1 addition & 1 deletion src/Indicators.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://daveskender.github.io/Stock.Indicators</PackageProjectUrl>
<PackageProjectUrl>https://dotnet.stockindicators.dev</PackageProjectUrl>
<PackageId>Skender.Stock.Indicators</PackageId>
<PackageTags>
Indicators;Stock;Market;Technical;Analysis;Algorithmic;Trading;Trade;Trend;Momentum;Finance;Algorithm;Algo;
Expand Down
2 changes: 1 addition & 1 deletion src/_common/Globals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace Skender.Stock.Indicators;

/// <summary>Technical indicators and overlays. See
/// <see href = "https://daveskender.github.io/Stock.Indicators/guide/">
/// <see href = "https://dotnet.stockindicators.dev/guide/">
/// the Guide</see> for more information.</summary>
public static partial class Indicator
{
Expand Down
8 changes: 4 additions & 4 deletions src/_common/Quotes/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Optionally select which candle part to use in the calculation.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/BasicQuote/#candlepart-options">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/BasicQuote/#candlepart-options">documentation</see>
for more information.
</para>
</summary>
Expand All @@ -21,7 +21,7 @@
Validate historical quotes.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/utilities/#validate-quote-history">documentation</see>
<see href="https://dotnet.stockindicators.dev/utilities/#validate-quote-history">documentation</see>
for more information.
</para>
</summary>
Expand All @@ -35,7 +35,7 @@
Converts historical quotes into larger bar sizes.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/utilities/#resize-quote-history">documentation</see>
<see href="https://dotnet.stockindicators.dev/utilities/#resize-quote-history">documentation</see>
for more information.
</para>
</summary>
Expand All @@ -50,7 +50,7 @@
Converts historical quotes into larger bar sizes.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/utilities/#resize-quote-history">documentation</see>
<see href="https://dotnet.stockindicators.dev/utilities/#resize-quote-history">documentation</see>
for more information.
</para>
</summary>
Expand Down
10 changes: 5 additions & 5 deletions src/_common/Results/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Finds indicator values on a specific date.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/utilities/#find-indicator-result-by-date">documentation</see>
<see href="https://dotnet.stockindicators.dev/utilities/#find-indicator-result-by-date">documentation</see>
for more information.
</para>
</summary>
Expand All @@ -20,7 +20,7 @@
Removes non-essential records containing null values.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/utilities/#condense">documentation</see>
<see href="https://dotnet.stockindicators.dev/utilities/#condense">documentation</see>
for more information.
</para>
</summary>
Expand All @@ -32,7 +32,7 @@
Removes non-essential records containing null or NaN values.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/utilities/#condense">documentation</see>
<see href="https://dotnet.stockindicators.dev/utilities/#condense">documentation</see>
for more information.
</para>
</summary>
Expand All @@ -45,7 +45,7 @@
Removes the recommended quantity of results from the beginning of the results list.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/utilities/#remove-warmup-periods">documentation</see>
<see href="https://dotnet.stockindicators.dev/utilities/#remove-warmup-periods">documentation</see>
for more information.
</para>
</summary>
Expand All @@ -57,7 +57,7 @@
Removes a specific quantity of results from the beginning of the results list.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/utilities/#remove-warmup-periods">documentation</see>
<see href="https://dotnet.stockindicators.dev/utilities/#remove-warmup-periods">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Adl/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Accumulation/Distribution Line (ADL) is a rolling accumulation of Chaikin Money Flow Volume.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Adl/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Adl/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Adx/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
It includes upward and downward indicators, and is often used to measure strength of trend.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Adx/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Adx/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Alligator/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
feeding habits when describing market movement.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Alligator/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Alligator/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Alma/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
weighted moving average of price over a lookback window.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Alma/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Alma/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Aroon/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Aroon is a simple oscillator view of how long the new high or low price occured over a lookback window.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Aroon/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Aroon/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Atr/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Average True Range (ATR) is a measure of volatility that captures gaps and limits between periods.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Atr/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Atr/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/AtrStop/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
trailing stop when the trend changes.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/AtrStop/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/AtrStop/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Awesome/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Awesome Oscillator (aka Super AO) is a measure of the gap between a fast and slow period modified moving average.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Awesome/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Awesome/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/BasicQuote/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
A simple quote transform.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/BasicQuote/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/BasicQuote/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Beta/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Beta shows how strongly one stock responds to systemic volatility of the entire market.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Beta/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Beta/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/BollingerBands/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Bollinger Bands&#174; depict volatility as standard deviation boundary lines from a moving average of price.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/BollingerBands/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/BollingerBands/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Bop/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Balance of Power (aka Balance of Market Power) is a momentum oscillator that depicts the strength of buying and selling pressure.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Bop/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Bop/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Cci/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Commodity Channel Index (CCI) is an oscillator depicting deviation from typical price range, often used to identify cyclical trends.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Cci/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Cci/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/ChaikinOsc/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Chaikin Oscillator is the difference between fast and slow Exponential Moving Averages (EMA) of the Accumulation/Distribution Line (ADL).
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/ChaikinOsc/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/ChaikinOsc/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Chandelier/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Chandelier Exit is typically used for stop-loss and can be computed for both long or short types.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Chandelier/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Chandelier/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Chop/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
on a scale of 0 to 100.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Chop/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Chop/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Cmf/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Chaikin Money Flow (CMF) is the simple moving average of Money Flow Volume (MFV).
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Cmf/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Cmf/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Cmo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
The Chande Momentum Oscillator is a momentum indicator depicting the weighted percent of higher prices in financial markets.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Cmo/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Cmo/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/ConnorsRsi/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
ConnorsRSI is a composite oscillator that incorporates RSI, winning/losing streaks, and percentile gain metrics on scale of 0 to 100.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/ConnorsRsi/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/ConnorsRsi/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Correlation/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Correlation Coefficient between two quote histories, based on price.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Correlation/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Correlation/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Dema/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Double Exponential Moving Average (DEMA) of the price.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Dema/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Dema/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Doji/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Doji is a single candlestick pattern where open and close price are virtually identical, representing market indecision.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Patterns/Doji/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Patterns/Doji/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Donchian/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Donchian Channels, also called Price Channels, are derived from highest High and lowest Low values over a lookback window.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Donchian/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Donchian/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Dpo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Detrended Price Oscillator (DPO) depicts the difference between price and an offset simple moving average.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Dpo/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Dpo/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
2 changes: 1 addition & 1 deletion src/a-d/Dynamic/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
McGinley Dynamic is a more responsive variant of exponential moving average.
<para>
See
<see href="https://daveskender.github.io/Stock.Indicators/indicators/Dynamic/#content">documentation</see>
<see href="https://dotnet.stockindicators.dev/indicators/Dynamic/#content">documentation</see>
for more information.
</para>
</summary>
Expand Down
Loading

0 comments on commit e64d14e

Please sign in to comment.