HaParticipant
New
Hi
I’d like to have a taller histogram on a MACD indicator.
myMACD=exponentialaverage[fast]–exponentialaverage[slow]
signal=exponentialaverage[signalP](myMACD)
This is from Nicolas in forums.
With the standard parameters, I just want to multiply an amplitude of the histogram but don’t know how to plot.
Any help would be great.
Thanks
You just need to multiply the above lines for a factor of your choice (1.0 is like the original), greater than 1 is larger, less than 1 is smaller:
Factor = 1.0
myMACD = exponentialaverage[fast]–exponentialaverage[slow] * Factor
signal = exponentialaverage[signalP](myMACD) - Factor