Skip to content

Instantly share code, notes, and snippets.

@quantra-go-algo
Created April 19, 2022 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quantra-go-algo/3d862c72cebcc623c86d95c7c4113f68 to your computer and use it in GitHub Desktop.
Save quantra-go-algo/3d862c72cebcc623c86d95c7c4113f68 to your computer and use it in GitHub Desktop.
Stock Market Data: Obtaining Data, Visualization & Analysis in Python - OHLCV dict
ohlcv_dict = {
'Open': 'first',
'High': 'max',
'Low': 'min',
'Close': 'last',
'Volume': 'sum'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment