macdHistogram
MACD Histogram is the difference between the MACD line and the signal line. It helps identify momentum and potential trend reversals, with positive values indicating increasing momentum and negative values indicating decreasing momentum.
macdHistogram (tick)
MACD Histogram is the difference between the MACD line and the signal line. It helps identify momentum and potential trend reversals, with positive values indicating increasing momentum and negative values indicating decreasing momentum.
Input parameters
| Prop | Type | Default | Description |
|---|---|---|---|
fastMinutes | number | 12 | The number of minutes for fast EMA calculation |
slowMinutes | number | 26 | The number of minutes for slow EMA calculation |
signalMinutes | number | 9 | The number of minutes for signal line calculation |
SQL example
TICK macdHistogram WITH fastMinutes=12, slowMinutes=26, signalMinutes=9 > 0 THEN order SET size=100, price=51.00, transmit=truemacdSignal
MACD Signal Line is typically a 9-period EMA of the MACD line. It helps identify potential buy and sell signals when it crosses the MACD line.
mfi
Money Flow Index (MFI) is a momentum oscillator that incorporates both price and volume data to measure buying and selling pressure. It ranges from 0 to 100, with values above 80 indicating overbought conditions and below 20 indicating oversold conditions.