Skip to content

Change scatter markers edgecolor and/or edgewidth  #354

Closed
@fxhuhn

Description

@fxhuhn

Hi there,
while playing with the alpha mode (alpha=0.1) I noticed that the marker have a border. Is that a feature, or is there any way to disable it?

image

`

    if df.signal_bull_week.notna().sum() > 0:
        signal_bull_week = mpf.make_addplot( df.signal_bull_week - 1 * offset,
                                    scatter=True,
                                    markersize=40,
                                    marker='^',
                                    alpha=0.1,
                                    color='black')
        add_plots.append(signal_bull_week)

    if df.signal_bear_week.notna().sum() > 0:
        signal_bear_week = mpf.make_addplot(df.signal_bear_week + 1 * offset,
                                     scatter=True,
                                     marker='v',
                                     markersize=40,
                                     alpha=0.1,
                                     color='black')
        add_plots.append(signal_bear_week)

`

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or requestgood first issueGood for newcomersreleasedcode merged into repo AND released to Pypi

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions