22 lines
426 B
JSON
22 lines
426 B
JSON
|
|
{
|
||
|
|
"name": "Relative Strength Index",
|
||
|
|
"description": "RSI oscillator indicator",
|
||
|
|
"type": "rsi",
|
||
|
|
"display_type": "subplot",
|
||
|
|
"default_parameters": {
|
||
|
|
"period": 14
|
||
|
|
},
|
||
|
|
"parameter_schema": {
|
||
|
|
"period": {
|
||
|
|
"type": "int",
|
||
|
|
"min": 2,
|
||
|
|
"max": 50,
|
||
|
|
"default": 14,
|
||
|
|
"description": "Period for RSI calculation"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"default_styling": {
|
||
|
|
"color": "#20c997",
|
||
|
|
"line_width": 2
|
||
|
|
}
|
||
|
|
}
|