Tradarr
New member
I know it's probably simple but can someone add add green bars for Up close and red bars for Down Close To TradePace indicator?
Code:
#TradePace Indicator Incldues snippets of code from Jman831 Buy And Sell Volume Pressure For ThinkOrSwim
declare lower;
def BuyVolume= ((high - open) + (close - low)) / 2 / (high - low) * volume;
def SellVolume = ((low - open) + (close - high)) / 2 / (high - low) * volume;
def deltavolume = BuyVolume - SellVolume;
plot Tradepace = deltavolume * absValue( close - open );
Tradepace.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
Code:
#TradePace Indicator Incldues snippets of code from Jman831 Buy And Sell Volume Pressure For ThinkOrSwim
declare lower;
def BuyVolume= ((high - open) + (close - low)) / 2 / (high - low) * volume;
def SellVolume = ((low - open) + (close - high)) / 2 / (high - low) * volume;
def deltavolume = BuyVolume - SellVolume;
plot Tradepace = deltavolume * absValue( close - open );
Tradepace.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
Attachments
Last edited by a moderator: