老周 发表于 2016-11-9 17:35:51

K线两点间连线模块

两个 K 线之间连线是屏显的重要内容。以下源码范例提交了静态和动态连线的方法:

#property copyright "Copyright 2012, laoyee"
#property link "http://www.docin.com/yiwence"
//新价格到达时运行一次
int start()
{
//两点间静态连线
iTwoPointsLine("15-5",Time,High,Time,High,0,Red);
//两点间动态连线
ObjectDelete("动态虚线");
iTwoPointsLine("动态虚线",Time,High,Time,Close,2,Blue);
return(0);
}
//程序加载时运行一次
int init()
{
return(0);
}
//程序卸载时运行一次
int deinit()
{
return(0);
}
/*
函 数:两点间连线(主图)
输入参数:string myLineName 线段名称
int myFirstTime 起点时间
int myFirstPrice 起点价格
int mySecondTime 终点时间
int mySecondPrice 终点价格
int myLineStyle 线型 0-实线 1-断线 2-点线 3-点划线 4-双点划线
color myLineColor 线色
输出参数:在指定的两点间连线
算法说明:
*/
voidiTwoPointsLine(stringmyLineName,intmyFirstTime,doublemyFirstPrice,intmySecondTime,doublemySecondPrice,int
myLineStyle,color myLineColor)
{
ObjectCreate(myLineName,OBJ_TREND,0,myFirstTime,myFirstPrice,mySecondTime,mySecondPrice);//确定两点坐标
ObjectSet(myLineName,OBJPROP_STYLE,myLineStyle); //线型
ObjectSet(myLineName,OBJPROP_COLOR,myLineColor); //线色
ObjectSet(myLineName,OBJPROP_WIDTH, 1); //线宽
ObjectSet(myLineName,OBJPROP_RAY,false);
}

静态线命名为“15-5” ,将第 15 根 k 线和第 5 根 k 线的最高价连线。动态线命名为“动态虚线”将第 5 根 k 线的最高价与当前报价连线,由于每次新价格不同,所以先删除原有线段再重新画线,完成动态连线的任务。




wo8 发表于 2016-11-19 13:09:12

看不懂            

18603715236 发表于 2017-3-12 17:51:26

00000000000000000000000000

stopasb 发表于 2017-12-20 19:50:03

走过路过不要错过

careerC 发表于 2018-3-10 23:07:32

谢谢楼主的分享

黑a手 发表于 2018-8-28 09:10:05

楼主辛苦了

风灰 发表于 2018-8-28 11:05:40

感谢分享

bha123654j 发表于 2018-9-14 13:21:19

不错,支持下楼主

hyr6316470 发表于 2018-10-4 18:40:44

不错。。。。。
页: [1]
查看完整版本: K线两点间连线模块