Yes and no, there are no additional points besides those in options - objects.
However if you have programming knowledge you can make your own module. See for instance time tools phaethon ephemeris.
Here is a list with all ephemeris data astrodienst has
https://www.astro.com/ftp/swisseph/ephe/seasnam.txtYou have to download ephemeris files for the bodies you want.
I could make a general interface in the language to support such extra files, but you'd have to make your own scripts with it, it won't be integrated into the rest of planetdance.
In fact i just made such an interface:
From the help:
getbody
Syntax: real getbody(int n, real jd, real inf[2]);
Action: calculates body n, for julian day jd, returns longitude, and puts speed and declination into inf.
Example, this one calculates Nessus:
int time[6];
real jd, p, inf[2];
jd = getsystemtime(time);
p = getbody(17066, jd, inf);
run;