We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 00ee542 + 0b236d6 commit a469271Copy full SHA for a469271
src/mplfinance/plotting.py
@@ -464,11 +464,6 @@ def plot( data, **kwargs ):
464
465
def _valid_addplot_kwargs():
466
467
- valid_markers = ['.', ',', 'o', 'v', '^', '<', '>', '1', '2', '3', '4', '8',
468
- 's', 'p', '*', 'h', 'H', '+', 'x', 'D', 'd', '|', '_', 'P',
469
- 'X', 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 'None', None, ' ', '']
470
-
471
472
valid_linestyles = ['-','solid','--','dashed','-.','dashdot','.','dotted',None,' ','']
473
474
@@ -480,7 +475,7 @@ def _valid_addplot_kwargs():
480
475
'Validator' : lambda value: value in ['main','lower'] },
481
476
482
477
'marker' : { 'Default' : 'o',
483
- 'Validator' : lambda value: value in valid_markers },
478
+ 'Validator' : lambda value: not isinstance(value,bool) },
484
479
485
'markersize' : { 'Default' : 18,
486
'Validator' : lambda value: isinstance(value,(int,float)) },
0 commit comments