Lighthouse

Real Motion Indicator

Category: Indicators By: Lighthouse Created: May 27, 2021, 8:21 AM
May 27, 2021, 8:21 AM
Indicators
4 Comments
Real Motion Indicator

RealMotion indicator as explained by Market Gauge
“The brown dots are a dot plot of the individual values of the RealMotion variable. Essentially, they divide the equity price by the moving average of that price (here 200 period). We then subtract one and multiply that value by 100. This centers the indicator at zero (when price = moving average then RealMotion will equal zero). Furthermore, by multiplying by 100 we make it so that when RealMotion = 5.0 we can say that the price is 5% greater than the reference moving average.”

// Real Motion indicator (a Market Gauge indicator)
//ported to Prorealtime by ciccio
//
//Default Values:
//PrimaryAverage=200
//RealMotionAverageSlow=200
//RealMotionAverageFast=50
//NumDevsUp=2
//NumDevsDn=2
//
//BaseLine represents 200 days SMA of price closes
BaseLine=0

//RealMotion indicator as explained by Market Gauge
//"The brown dots are a dot plot of the individual values of the RealMotion variable.
//Essentially, they divide the equity price by the moving average of that price (here 200 period).
//We then subtract one and multiply that value by 100.
//This centers the indicator at zero (when price = moving average then RealMotion will equal zero).
//Furthermore, by multiplying by 100 we make it so that when RealMotion = 5.0
//we can say that the price is 5% greater than the reference moving average."
PrimaryAveragePlot=Average[PrimaryAverage](close)
RealMotion=(close/PrimaryAveragePlot - 1)*100

SlowRealMotion=Average[RealMotionAverageSlow](RealMotion)
FastRealMotion=Average[RealMotionAverageFast](RealMotion)

//Bollinger Bands
fUpperBand = FastRealMotion + ((STD[RealMotionAverageFast](RealMotion)) * NumDevsUp)
fLowerBand = FastRealMotion - ((STD[RealMotionAverageFast](RealMotion)) * NumDevsDn)

//Plotting
Return RealMotion COLOURED(150,75,0) AS "Real Motion", SlowRealMotion COLOURED(255,0,102) AS "SlowRealMotion", FastRealMotion COLOURED(0,0,255) AS "FastRealMotion", fLowerBand COLOURED(0,0,0) AS "fLowerBand", fUpperBand COLOURED(0,0,0) AS "fUpperBand", BaseLine COLOURED(0,0,0) AS "BaseLine"

Download
Filename: Real-Motion-indicator.itf
Downloads: 153
Lighthouse
Lighthouse Master
Currently debugging life, so my bio is on hold. Check back after the next commit for an update.
Author’s Profile

Comments

luxrun
5 years ago
#

Thanks for the indication of the pdf. I'm actually looking for something more practical with examples of price analysis and the different behaviors of the indicator. On google I found this first video that I suggest to learn the characteristics of the indicator and other different settings. Thanks again, here is the link: https://www.youtube.com/watch?v=Yow4P1hTfbY&ab_channel=StockCharts

Vinks_o_7
5 years ago
#

Hi Luxrun http://www.marketgauge.com/wp-content/uploads/2016/04/MG-Real-Motion-Indicator-Description.pdf

Ciccio
5 years ago
#

Thanks @luxrun Read the pdf file

luxrun
5 years ago
#

Sarebbe utile avere qualche indicazione di massima sull'utilizzo di questo indicatore (la sua funzione fondamentale, gli eccessi e via discorrendo), grazie

ProRealCode ProRealCode
Loading...