Skip to content

Data and Technical Analysis Calcs #1

@personal-coding

Description

@personal-coding

Where is your data.csv from? I see a lot of data that appears missing. There are spurts where the close data is the same day-after-day for weeks (see AEP and WFC).

Your SO and William R appear to be using different current close price methodologies:

SO:

for i in range(len(all_prices) - period): C = all_prices[i] H = max(all_prices[i:i + period]) L = min(all_prices[i:i + period])

William R:

for i in range(period - 1, len(all_prices) - 1): C = all_prices[i] H = max(all_prices[i - period + 1:i]) L = min(all_prices[i - period + 1:i])

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions