You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Browse filesBrowse the repository at this point in the historyBrowse files
authored
ci: rename CI job to lint-and-test convention (#449)
Signed-off-by: Dave Skender <8432125+DaveSkender@users.noreply.github.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/_indicators/Ema.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,13 @@ layout: indicator
11
11
12
12
## Parameters
13
13
14
+
<!-- markdownlint-disable MD051 -- #candlepart-options resolves via Jekyll {% include candlepart-options.md %} below -->
14
15
| name | type | notes
15
16
| -- |-- |--
16
17
| `quotes` | Iterable[Quote] | Iterable of the [Quote class]({{site.baseurl}}/guide/#historical-quotes) or [its sub-class]({{site.baseurl}}/guide/#using-custom-quote-classes). <br><spanclass='qna-dataframe'> • [See here]({{site.baseurl}}/guide/#using-pandasdataframe) for usage with pandas.DataFrame</span>
17
18
| `lookback_periods` | int | Number of periods (`N`) in the moving average. Must be greater than 0.
18
19
| `candle_part` | CandlePart, *default CandlePart.CLOSE* | Specify candle part to evaluate. See [CandlePart options](#candlepart-options) below.
Copy file name to clipboardExpand all lines: docs/_indicators/Macd.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,13 +11,15 @@ layout: indicator
11
11
12
12
## Parameters
13
13
14
+
<!-- markdownlint-disable MD051 -- #candlepart-options resolves via Jekyll {% include candlepart-options.md %} below -->
14
15
| name | type | notes
15
16
| -- |-- |--
16
17
| `quotes` | Iterable[Quote] | Iterable of the [Quote class]({{site.baseurl}}/guide/#historical-quotes) or [its sub-class]({{site.baseurl}}/guide/#using-custom-quote-classes). <br><spanclass='qna-dataframe'> • [See here]({{site.baseurl}}/guide/#using-pandasdataframe) for usage with pandas.DataFrame</span>
17
18
| `fast_periods` | int, *default 12* | Number of periods (`F`) for the faster moving average. Must be greater than 0.
18
19
| `slow_periods` | int, *default 26* | Number of periods (`S`) for the slower moving average. Must be greater than `fast_periods`.
19
20
| `signal_periods` | int, *default 9* | Number of periods (`P`) for the moving average of MACD. Must be greater than or equal to 0.
20
21
| `candle_part` | CandlePart, *default CandlePart.CLOSE* | Specify candle part to evaluate. See [CandlePart options](#candlepart-options) below.
0 commit comments