Skip to content

Instantly share code, notes, and snippets.

@hossein761
Created May 30, 2018 13:27
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 hossein761/3ffe2ef4f3702c2d6e66b2065ca37967 to your computer and use it in GitHub Desktop.
Save hossein761/3ffe2ef4f3702c2d6e66b2065ca37967 to your computer and use it in GitHub Desktop.
datapoints with high volume
pnd_df = candles_df.loc[candles_df['volume'] >= 5000]
pnd_volume = pnd_df['volume'].values
pnd_high = pnd_df['high'].values
pnd_low = pnd_df['low'].values
fig1 = plt.figure()
ax1 = fig1.add_subplot(111, projection='3d')
ax1.scatter(pnd_low, pnd_high, pnd_volume, s=4, cmap='viridis')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment