Files location in MT4
...\MQL4\Include\selvan_aspects_include.mqh
...\MQL4\Libraries\swedll32.dll
...\MQL4\indicators\selvan_aspects_v04.mq4
------------------------------------------
You've to check at least 2 bodies (ex:mercury & saturn)
And at least one aspect (ex : square only)
------------------------------
---------------------------
Trick:
The indicator is supposed to display on a separate window but if you want to display it on the main window here is the trik :

1>Don't launch the indicator in the mt4 window

2>But first open selvan_aspects_v04.mq4 indicator in metaEditor 

3>Make these changes in the program(if they didn't):
//#property indicator_separate_window
#property indicator_chart_window

4>Compile (but don't close the program)

5>Then launch now the indicator in the mt4 window
(=> the indicator isn't displayed)

6> Now go again to metaEditor and change again the codes like :
#property indicator_separate_window
//#property indicator_chart_window

7>Compile again(now you can close the metaEditor)

8>The asset and the indicator are  on the main chart !
-------------------------------
