MACD
Namespace: GF.Clients.Charts.Custom
Assembly: GF.Clients.Charts (in GF.Clients.Charts.dll) Version: a2f537322cdaf87d2796303449681c087e96766d
Syntax
public ISeriesArray MACD( Series Input, numeric SignalWindow, numeric SlowWindow, numeric FastWindow )
Parameters
- Input
- Type: GF.Clients.Charts.TimeSeriesSeries
Input data (historical series or another indicator) that will be processed by the indicator. Category: Data. - SignalWindow
- Type: GF.Clients.Charts.Custom.EL.Runtimenumeric
Window size of signal moving average. Parameter: Signal Period. Category: Periods. - SlowWindow
- Type: GF.Clients.Charts.Custom.EL.Runtimenumeric
Window size of slow moving average. Parameter: Slow Period. Category: Periods. - FastWindow
- Type: GF.Clients.Charts.Custom.EL.Runtimenumeric
Window size of fast moving average. Parameter: Fast Period. Category: Periods.
Return Value
Type: ISeriesArrayArray of series: Histogram, MACD, Signal
Remarks
MACD
Default: SignalWindow=9, SlowWindow=26, FastWindow=12
Output: Histogram, MACD, Signal
Examples
See Also