diff --git a/03 Writing Algorithms/03 Securities/99 Asset Classes/01 US Equity/07 Shorting/99 Examples.html b/03 Writing Algorithms/03 Securities/99 Asset Classes/01 US Equity/07 Shorting/99 Examples.html index c986ec2c39..dcc80ed926 100644 --- a/03 Writing Algorithms/03 Securities/99 Asset Classes/01 US Equity/07 Shorting/99 Examples.html +++ b/03 Writing Algorithms/03 Securities/99 Asset Classes/01 US Equity/07 Shorting/99 Examples.html @@ -2,10 +2,10 @@

Example 1: Shorting Penny Stock Top Gainers

- The following algorithm example adds a universe of penny stocks that have experienced the greatest upward momentum over the last two trading days. - For each asset in the universe, it monitors the hourly Bollinger Bands. + The following algorithm adds a universe of penny stocks that have experienced the greatest upward momentum over the last two trading days. + For each asset in the universe, it monitors an hourly Bollinger Bands indicator. When an asset breaks above the upper band, it shorts the asset. - It exits each position when the asset drops 10% from the entry price or when it reverts back below the middle Bollinger Band. + It exits each position when the asset drops 10% from the entry price or when the price reverts back below the middle Bollinger Band.

using QuantConnect.Data.Shortable;