14 lines
596 B
JavaScript
14 lines
596 B
JavaScript
/**
|
|
* This file acts as a central registry for all available indicators.
|
|
* To add a new indicator to the chart UI:
|
|
* 1. Create the indicator's JS file (e.g., rsi.js) with its definition object.
|
|
* 2. Make sure that file is loaded in index.html BEFORE this one.
|
|
* 3. Add the indicator's definition object (e.g., RSI_INDICATOR) to this array.
|
|
*/
|
|
const AVAILABLE_INDICATORS = [
|
|
HTS_INDICATOR,
|
|
EMA_INDICATOR,
|
|
BB_INDICATOR, // Added the new Bollinger Bands indicator
|
|
HURST_INDICATOR // Added the new Hurst Bands indicator
|
|
// Add other indicators here as needed
|
|
]; |