Page 1 of 1

moon being so close to Earth

Posted: Tue Nov 15, 2016 8:26 pm
by pear1942
Can someone tell me is there a correlation of the market highs and the moon being so close to Earth?

Re: moon being so close to Earth

Posted: Tue Nov 15, 2016 9:50 pm
by earik
Wave59 can calculate the distance from the Moon to the Earth and plot it. It's not a canned indicator, but you can get it done via QScript. Copy and paste this into the QScript Editor, click QScript - Script Properties, name it something (and set scaling to "screen"), then go Qscript - Build Script, and it will show up in your "technicals" menu. It's plotting distances, so being close to the Earth would be the troughs, and being far away would be the peaks in the plot.

Code: Select all

input:planet(astro_moon),color(olive);

dist = astro(year,month,day,time,planet,true,astro_dist,true);
plot1 = dist; 
color1 = color;  
Regards,

Earik

Re: moon being so close to Earth

Posted: Thu Nov 17, 2016 9:42 pm
by abacaba
Earik,

Far out! :D

Todd