Skip to content

Instantly share code, notes, and snippets.

@TwizzyIndy
Last active February 13, 2025 07:04
Show Gist options
  • Save TwizzyIndy/f5cd8732add5f90fa25c2894c447773c to your computer and use it in GitHub Desktop.
Save TwizzyIndy/f5cd8732add5f90fa25c2894c447773c to your computer and use it in GitHub Desktop.
#@version = 1
# Author: TwizzyIndy
# Description: Estimated Buy/Sell Volume Custom Indicator for Binance(Desktop)
# 2025/02
study("Est. Buy/Sell Volume", overlay=False)
range = high - low
buyVolume = range != 0 ? volume * (close - low) / range : 0
sellVolume = range != 0 ? volume * (high - close) / range : 0
plot(buyVolume, color="green", title="Buy Volume")
plot(sellVolume, color="red", title="Sell Volume")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment