Skip to content

Commit

Permalink
Rename tag strategy examples to strategy example
Browse files Browse the repository at this point in the history
  • Loading branch information
gaviles committed Sep 22, 2017
1 parent 83fdeab commit b35b307
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Algorithm.CSharp/BubbleAlgorithm.cs
Expand Up @@ -30,7 +30,7 @@ namespace QuantConnect.Algorithm.CSharp
/// Capitalize in overvalued markets by generating returns with momentum and selling before the crash
/// Capitalize in undervalued markets by purchasing stocks at bottom of trough
/// </summary>
/// <meta name="tag" content="strategy examples" />
/// <meta name="tag" content="strategy example" />
/// <meta name="tag" content="custom data" />
/// <meta name="tag" content="importing data" />
public class BubbleAlgorithm : QCAlgorithm
Expand Down
2 changes: 1 addition & 1 deletion Algorithm.CSharp/CustomDataNIFTYAlgorithm.cs
Expand Up @@ -25,7 +25,7 @@ namespace QuantConnect.Algorithm.CSharp
/// This demonstration imports indian NSE index "NIFTY" as a tradable security in addition to the USDINR currency pair. We move into the
/// NSE market when the economy is performing well.s
/// </summary>
/// <meta name="tag" content="strategy examples" />
/// <meta name="tag" content="strategy example" />
/// <meta name="tag" content="using data" />
/// <meta name="tag" content="importing data" />
/// <meta name="tag" content="custom data" />
Expand Down
2 changes: 1 addition & 1 deletion Algorithm.CSharp/MovingAverageCrossAlgorithm.cs
Expand Up @@ -28,7 +28,7 @@ namespace QuantConnect.Algorithm.CSharp
/// <meta name="tag" content="indicators" />
/// <meta name="tag" content="indicator classes" />
/// <meta name="tag" content="moving average cross" />
/// <meta name="tag" content="strategy examples" />
/// <meta name="tag" content="strategy example" />
public class MovingAverageCrossAlgorithm : QCAlgorithm
{
private string _symbol = "SPY";
Expand Down
2 changes: 1 addition & 1 deletion Algorithm.CSharp/MultipleSymbolConsolidationAlgorithm.cs
Expand Up @@ -28,7 +28,7 @@ namespace QuantConnect.Algorithm.CSharp
/// <meta name="tag" content="consolidating data" />
/// <meta name="tag" content="indicators" />
/// <meta name="tag" content="using data" />
/// <meta name="tag" content="strategy examples" />
/// <meta name="tag" content="strategy example" />
public class MultipleSymbolConsolidationAlgorithm : QCAlgorithm
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion Algorithm.Python/CustomDataNIFTYAlgorithm.py
Expand Up @@ -31,7 +31,7 @@
### This demonstration imports indian NSE index "NIFTY" as a tradable security in addition to the USDINR currency pair. We move into the
### NSE market when the economy is performing well.
### </summary>
### <meta name="tag" content="strategy examples" />
### <meta name="tag" content="strategy example" />
### <meta name="tag" content="using data" />
### <meta name="tag" content="importing data" />
### <meta name="tag" content="custom data" />
Expand Down
2 changes: 1 addition & 1 deletion Algorithm.Python/MovingAverageCrossAlgorithm.py
Expand Up @@ -31,7 +31,7 @@
### <meta name="tag" content="indicators" />
### <meta name="tag" content="indicator classes" />
### <meta name="tag" content="moving average cross" />
### <meta name="tag" content="strategy examples" />
### <meta name="tag" content="strategy example" />
class MovingAverageCrossAlgorithm(QCAlgorithm):

def Initialize(self):
Expand Down
2 changes: 1 addition & 1 deletion Algorithm.Python/QCUWeatherBasedRebalancing.py
Expand Up @@ -30,7 +30,7 @@
### <meta name="tag" content="using data" />
### <meta name="tag" content="importing data" />
### <meta name="tag" content="custom data" />
### <meta name="tag" content="strategy examples" />
### <meta name="tag" content="strategy example" />
class QCUWeatherBasedRebalancing(QCAlgorithm):

def Initialize(self):
Expand Down

0 comments on commit b35b307

Please sign in to comment.