LayerType
ts
type LayerType =
| 'price:candlesticks'
| 'price:line'
| 'volume:bars'
| 'atr'
| 'bollinger-bands'
| 'ema'
| 'macd'
| 'rsi'
| 'sma'
| 'stochastic';| Value | Description |
|---|---|
'price:candlesticks' | OHLC candlestick chart |
'price:line' | Line chart of a single price field |
'volume:bars' | Volume bar chart |
'atr' | Average True Range indicator |
'bollinger-bands' | Bollinger Bands indicator |
'ema' | Exponential Moving Average indicator |
'macd' | MACD indicator |
'rsi' | Relative Strength Index indicator |
'sma' | Simple Moving Average indicator |
'stochastic' | Stochastic Oscillator indicator |