【阳光飞狐__与财富同行】

 找回密码
 手机注册

手机动态码快速登录

手机号快速注册登录

楼主: dlts
打印 上一主题 下一主题

江恩的图片

[复制链接]
31#
发表于 2011-2-6 09:00:20 | 只看该作者
27
108
值得研究的神秘数字看来根源也在天上了
32#
 楼主| 发表于 2011-2-6 10:51:05 | 只看该作者
印度的,堪比江恩。
33#
发表于 2011-2-6 11:03:01 | 只看该作者
土鳖一个,啥都没看懂。
34#
发表于 2011-2-6 17:23:02 | 只看该作者
辛苦了 辛苦了
35#
 楼主| 发表于 2011-2-7 01:41:37 | 只看该作者
The programming steps to get a planet’s position
To compute a celestial body
or point with SWISSEPH, you have to do the following steps (use swetest.c as an example). The details of the functions will be explained in the following chapters.

1.
Set the directory path of the ephemeris files, e.g.:

swe_set_ephe_path(”C:\\SWEPH\\EPHE”);

2..
From the birth date, compute the Julian day number:

jul_day_UT = swe_julday(year, month, day, hour, gregflag);

3..
Compute a planet or other bodies:

ret_flag = swe_calc_ut(jul_day_UT, planet_no, flag, lon_lat_rad, err_msg);

or a fixed star:

ret_flag = swe_fixstar_ut(star_nam, jul_day_UT, flag, lon_lat_rad, err_msg);


Note:

The functions swe_calc_ut() and swe_fixstar_ut() were introduced with Swisseph version 1.60.


If you use a Swisseph version older than 1.60 or if you want to work with
Ephemeris Time, you have to proceed as follows instead:


First, if necessary, convert Universal Time (UT) to Ephemeris Time (ET):

jul_day_ET = jul_day_UT + swe_deltat(jul_day_UT);


Then Compute a planet or other bodies:

ret_flag = swe_calc(jul_day_ET, planet_no, flag, lon_lat_rad, err_msg);

or a fixed star:

ret_flag = swe_fixstar(star_nam, jul_day_ET, flag, lon_lat_rad, err_msg);

5..
At the end of your computations close all files and free memory calling swe_close();

Here is a miniature sample program, it is in the source distribution as swemini.c

#include "swephexp.h"
/* this includes
"sweodef.h" */
int main()
{

char *sp, sdate[AS_MAXCH], snam[40], serr[AS_MAXCH];


int jday = 1, jmon = 1, jyear = 2000;

double jut = 0.0;

double tjd_ut, te, x2[6];

long iflag, iflgret;

int p;

iflag = SEFLG_SPEED;

while (TRUE) {

printf("\nDate (d.m.y) ?");

gets(sdate);

/* stop if a period . is entered */

if (*sdate == '.')

return OK;

if (sscanf (sdate, "%d%*c%d%*c%d", &jday,&jmon,&jyear) < 1) exit(1);


/*


* we have day, month and year and convert to Julian day number


*/

tjd_ut = swe_julday(jyear,jmon,jday,jut,SE_GREG_CAL);



/*


* compute Ephemeris from Universal by adding delta_t


* not required for Swisseph versions smaller than 1.60


*/

/* te = tjd_ut + swe_deltat(tjd_ut); */

printf("date: %02d.%02d.%d at 0:00 Universal time\n", jday, jmon, jyear);

printf("planet
\tlongitude\tlatitude\tdistance\tspeed long.\n");


/*


* a loop over all planets


*/

for (p = SE_SUN; p <= SE_CHIRON; p++) {

if (p == SE_EARTH) continue;

/*


* do the coordinate calculation for this planet p


*/
iflgret = swe_calc_ut(tjd_ut, p, iflag, x2, serr);


/* Swisseph versions older than 1.60 require the following

* statement instead */
/* iflgret = swe_calc(te, p, iflag, x2, serr); */


/*


* if there is a problem, a negative value is returned and an


* error message is in serr.


*/

if (iflgret < 0)

printf("error: %s\n", serr);


/*


* get the name of the planet p


*/

swe_get_planet_name(p, snam);


/*


* print the coordinates


*/

printf("%10s\t%11.7f\t%10.7f\t%10.7f\t%10.7f\n",


snam, x2[0], x2[1], x2[2], x2[3]);

}

}

return OK;
}
36#
 楼主| 发表于 2011-2-7 01:43:24 | 只看该作者
运用在MT4上的Astro很多
37#
 楼主| 发表于 2011-2-7 02:01:44 | 只看该作者
MT4上显示的

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?手机注册 手机动态码快速登录

x
38#
 楼主| 发表于 2011-2-7 02:57:02 | 只看该作者
MT4 Astrology Indicator.已解决。棉花日线和30分钟的胶

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?手机注册 手机动态码快速登录

x
39#
 楼主| 发表于 2011-2-7 03:10:58 | 只看该作者
5分钟的糖

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?手机注册 手机动态码快速登录

x
40#
发表于 2011-2-7 21:30:51 | 只看该作者
41#
发表于 2011-2-7 21:46:46 | 只看该作者
除了楼主说的几个似乎还有DT、FTGT、MTP
42#
 楼主| 发表于 2011-2-7 22:57:08 | 只看该作者
这几个软件也可以发发
43#
 楼主| 发表于 2011-2-7 23:01:59 | 只看该作者
DT6的。日线铜

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?手机注册 手机动态码快速登录

x
44#
 楼主| 发表于 2011-2-7 23:07:41 | 只看该作者
节后第一个交易日,5分钟的猜测图

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?手机注册 手机动态码快速登录

x
45#
发表于 2011-2-8 01:35:33 | 只看该作者
46#
发表于 2011-2-8 17:09:39 | 只看该作者
Cycle-Timer
Wave59
Market Analyst 6
三颗明珠啊。。
47#
发表于 2011-2-8 20:15:16 | 只看该作者
48#
 楼主| 发表于 2011-2-10 22:17:37 | 只看该作者
MurreyMath

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?手机注册 手机动态码快速登录

x
49#
发表于 2011-2-10 22:25:42 | 只看该作者
50#
 楼主| 发表于 2011-2-11 00:25:48 | 只看该作者
time

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?手机注册 手机动态码快速登录

x
51#
 楼主| 发表于 2011-2-11 19:48:19 | 只看该作者
How to execute trade based on this system.

To trade using this system in intraday you need to take the LTP of index or stock after 9:05 am in morning.

Ideally you should take the Weighted Average Price of any stock or scrip between 9:05 am - 9:15 am.

However, after 9:30 am, you should only take LTP of stock or index.

Idea is in early few minutes there is lot of volatility in market, so to decide fair price we should take Weighted Average.

Many s it is not possible for many to start trading from 9:00 am. In that case, those who start trading after 9:30 am, can take LTP.

Now lets say you get the price as 5152.

You enter the price in Gann Calculator

You will get the square that looks like below

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?手机注册 手机动态码快速登录

x
52#
 楼主| 发表于 2011-2-11 19:49:19 | 只看该作者
5152 falls between 5166 and 5148.

So we should buy above 5166 and sell below 5148.

Targets are next levels in the calculator.

Hope this is clear.

Now lets say 1st target is achieved.(5181)
Then we we watch whether price is able to sustain above 5181 for more than 5 min.

If it sustains, we continue our long position. If not, we square off.
53#
 楼主| 发表于 2011-2-11 19:59:43 | 只看该作者
今天糖是开盘7531 ,高是7570,低是7525。开盘数字添加。如图

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?手机注册 手机动态码快速登录

x
54#
 楼主| 发表于 2011-2-11 20:00:34 | 只看该作者
江恩的东西,就是猜着玩。
55#
 楼主| 发表于 2011-2-14 20:23:12 | 只看该作者
棉花日线的

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?手机注册 手机动态码快速登录

x
56#
 楼主| 发表于 2011-2-19 18:03:29 | 只看该作者
糖的分析

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?手机注册 手机动态码快速登录

x
57#
发表于 2011-2-19 23:41:27 | 只看该作者

方便用cycle r 给个上证指数和豆油,豆粕的日线走势图?
58#
发表于 2011-2-20 02:01:20 | 只看该作者
59#
发表于 2011-2-21 11:04:36 | 只看该作者
谢谢分享!!!!!!!!!!!!!!!!
60#
发表于 2011-2-21 22:56:09 | 只看该作者
楼主哪里搞到这么多的外软啊!!!太震撼了。
您需要登录后才可以回帖 登录 | 手机注册 手机动态码快速登录

本版积分规则

QQ|小黑屋|手机版|Archiver|【阳光飞狐】 ( 网站ICP编号:京ICP备06013475号-7 )

GMT+8, 2025-7-6 15:21 , Processed in 0.156878 second(s), 18 queries .

Powered by Discuz! X3.2 Licensed

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表