22 lines
442 B
JSON
22 lines
442 B
JSON
|
|
{
|
||
|
|
"name": "Exponential Moving Average",
|
||
|
|
"description": "Exponential Moving Average indicator",
|
||
|
|
"type": "ema",
|
||
|
|
"display_type": "overlay",
|
||
|
|
"default_parameters": {
|
||
|
|
"period": 12
|
||
|
|
},
|
||
|
|
"parameter_schema": {
|
||
|
|
"period": {
|
||
|
|
"type": "int",
|
||
|
|
"min": 1,
|
||
|
|
"max": 200,
|
||
|
|
"default": 12,
|
||
|
|
"description": "Period for EMA calculation"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"default_styling": {
|
||
|
|
"color": "#ff6b35",
|
||
|
|
"line_width": 2
|
||
|
|
}
|
||
|
|
}
|