比特币通信协议 - 币圈消息

比特币通信协议篇11、二、TURN简介。在典型的情况下,TURN客户端连接到内网中,并且通过一个或者多个NAT到 详细

分享一个短线指标,看不上的请路过

  [复制链接]
543 14
kusizhe 发表于 2018-1-11 15:03:39 | 只看该作者 |阅读模式 打印 上一主题 下一主题
共享一个趋势指标,名字叫MasterTrend,短线变色,或K线收盘突破变色,灰常实用。
收藏
收藏0
转播
转播
分享
分享
分享
淘帖0

精彩评论14

跳转到指定楼层
15#
王瀚鹏 发表于 2018-1-12 06:06:03 | 只看该作者
谢谢分享
14#
cccv123 发表于 2018-1-12 05:51:25 | 只看该作者

每次都这么有意思吗
13#
kkaabb 发表于 2018-1-12 04:16:19 | 只看该作者

就斤斤计较
12#
sdwpf2008 发表于 2018-1-12 02:57:43 | 只看该作者
就斤斤计较斤斤计较斤斤计较经济
11#
FURY 发表于 2018-1-12 01:30:05 | 只看该作者
謝謝分享~
10#
 楼主| kusizhe 发表于 2018-1-12 00:58:15 | 只看该作者

谢谢!你的指标跟MasterTrend是有区别的,看附图,MasterTrend过滤掉很多噪音,使得可操作性更强,还有一点,MasterTrend跟K线的结合度很高,基本上收盘在线下就可操作。
想送点金币给你,不知道怎么送。
9#
735269731 发表于 2018-1-11 23:46:35 | 只看该作者
//+------------------------------------------------------------------+
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_width1  2
#property indicator_width2  2
#property indicator_color1 Red
#property indicator_color2 Lime
extern int  均线=5;
double duo[];
double kong[];
//+------------------------------------------------------------------+
int init()
{     
   SetIndexBuffer(0,duo);   
   SetIndexBuffer(1,kong);     
   SetIndexStyle(0,DRAW_LINE);
   SetIndexStyle(1,DRAW_LINE);
   SetIndexDrawBegin(0,均线);   
   SetIndexDrawBegin(1,均线);   
   IndicatorDigits(Digits);   
   
   return(0);
}  
//+------------------------------------------------------------------+
int start()
{     
   double temp0,temp1;
   int limit;
   int counted_bars=IndicatorCounted();
   if(counted_bars0) counted_bars--;
   limit=Bars-counted_bars;
   for(int i=limit; i>=0; i--)
   {            
     duo[i]=EMPTY_VALUE;
     kong[i]=EMPTY_VALUE;
     temp0=iMA(NULL,0,均线,0,MODE_SMA,PRICE_CLOSE,i);
     temp1=iMA(NULL,0,均线,0,MODE_SMA,PRICE_CLOSE,i+1);
     if(temp0>=temp1) {duo[i]=temp0; duo[i+1]=temp1;}      
     else {kong[i]=temp0; kong[i+1]=temp1;}      
   }         
   
   return(0);
}
//+------------------------------------------------------------------+
8#
domino 发表于 2018-1-11 22:28:20 | 只看该作者
thanks
7#
诺森 发表于 2018-1-11 21:25:43 | 只看该作者
不会用的路过
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

发布主题
阅读排行更多+

Powered by 顺水鱼MT4外汇EA网! X3.2© 2001-2017 顺水MT4外汇EA公司.( 陕ICP备17014341号-1