论坛全局菜单下方 - TICKMILL 285X70论坛全局菜单下方 - ThinkMarkets285X70论坛全局菜单下方 - 荔枝返现285X70论坛全局菜单下方 -  icmarkets285X70
查看:1021回复:4
草龙
注册时间2004-12-17
[MT4指标]斐波那契阻力支撑线
楼主发表于:2014-09-16 13:49只看该作者倒序浏览
1楼 电梯直达
电梯直达
主图指标 mt4指标类型:震荡指标 是否能用在mt4手机版上:否 是否含有未来函数:无 //+------------------------------------------------------------------+ //| Pivot Points v8.mq4 | //| Copyright ? 2007, MetaQuotes Software Corp. | //| http://www.metaquotes.net | //+------------------------------------------------------------------+ #property copyright \"Jason Normandin\" //FiboPivot calculations inserted by Jack Hewings #property link \"\" #property indicator_chart_window #property indicator_buffers 7 #property indicator_color1 MediumVioletRed #property indicator_color2 MediumVioletRed #property indicator_color3 MediumVioletRed #property indicator_color4 Tomato #property indicator_color5 Teal #property indicator_color6 Teal #property indicator_color7 Teal #property indicator_width1 3 #property indicator_width2 2 #property indicator_width3 1 #property indicator_width4 3 #property indicator_width5 1 #property indicator_width6 2 #property indicator_width7 3 /* #property indicator_style1 STYLE_DOT #property indicator_style2 STYLE_DOT #property indicator_style3 STYLE_DOT #property indicator_style4 STYLE_SOLID #property indicator_style5 STYLE_DOT #property indicator_style6 STYLE_DOT #property indicator_style7 STYLE_DOT */ #define SECONDS_IN_MINUTE 60 #define SECONDS_IN_HOUR 3600 #define SECONDS_IN_DAY 86400 #define PIVOTSET_DAILY 1 #define PIVOTSET_WEEKLY 2 #define PIVOTSET_MONTHLY 3 #define PIVOT_R3 0 #define PIVOT_R2 1 #define PIVOT_R1 2 #define PIVOT_PP 3 #define PIVOT_S1 4 #define PIVOT_S2 5 #define PIVOT_S3 6 // input parameters extern int PivotSet = PIVOTSET_DAILY; extern int DayStartHour = 0; // Metaquotes is +2 GMT // buffers double dR3Buffer; double dR2Buffer; double dR1Buffer; double dPPBuffer; double dS1Buffer; double dS2Buffer; double dS3Buffer; int init() { SetIndexBuffer(0,dR3Buffer); SetIndexBuffer(1,dR2Buffer); SetIndexBuffer(2,dR1Buffer); SetIndexBuffer(3,dPPBuffer); SetIndexBuffer(4,dS1Buffer); SetIndexBuffer(5,dS2Buffer); SetIndexBuffer(6,dS3Buffer); switch (PivotSet) { case PIVOTSET_DAILY: IndicatorShortName(\"Daily Pivot Points\"); SetIndexLabel(0,\"Daily Pivot R3\"); SetIndexLabel(1,\"Daily Pivot R2\"); SetIndexLabel(2,\"Daily Pivot R1\"); SetIndexLabel(3,\"Daily Pivot Point\"); SetIndexLabel(4,\"Daily Pivot S1\"); SetIndexLabel(5,\"Daily Pivot S2\"); SetIndexLabel(6,\"Daily Pivot S3\"); break; case PIVOTSET_WEEKLY: IndicatorShortName(\"Weekly Pivot Points\"); SetIndexLabel(0,\"Weekly Pivot R3\"); SetIndexLabel(1,\"Weekly Pivot R2\"); SetIndexLabel(2,\"Weekly Pivot R1\"); SetIndexLabel(3,\"Weekly Pivot Point\"); SetIndexLabel(4,\"Weekly Pivot S1\"); SetIndexLabel(5,\"Weekly Pivot S2\"); SetIndexLabel(6,\"Weekly Pivot S3\"); break; case PIVOTSET_MONTHLY: IndicatorShortName(\"Monthly Pivot Points\"); SetIndexLabel(0,\"Monthly Pivot R3\"); SetIndexLabel(1,\"Monthly Pivot R2\"); SetIndexLabel(2,\"Monthly Pivot R1\"); SetIndexLabel(3,\"Monthly Pivot Point\"); SetIndexLabel(4,\"Monthly Pivot S1\"); SetIndexLabel(5,\"Monthly Pivot S2\"); SetIndexLabel(6,\"Monthly Pivot S3\"); break; } return(0); } int start() { double dPrices[4]; double dPivots[7]; // Don\'t show lines on inappropriate timeframes switch (PivotSet) { case PIVOTSET_DAILY: if (Period() > PERIOD_H1) return(0); break; case PIVOTSET_WEEKLY: if (Period() > PERIOD_D1) return(0); break; case PIVOTSET_MONTHLY: if (Period() > PERIOD_W1) return(0); break; } // Determine how far back to iterate int iBarsToCalc = Bars - IndicatorCounted(); if (iBarsToCalc < Bars) iBarsToCalc++; // Iterate over bars and perform calcs for (int i=iBarsToCalc-1;i>=0;i--) { // DAILY PIVOTS // If PivotSet = PIVOTSET_DAILY and it\'s a new day then calc pivots if (PivotSet == PIVOTSET_DAILY) { datetime dtDayStart0 = getDayStart(Time); datetime dtDayStart1 = getDayStart(Time[i+1]); if (dtDayStart0 != dtDayStart1) { getPrevDayPrices(dPrices,dtDayStart0); getPivots(dPivots,dPrices); } } // end daily pivot block // WEEKLY PIVOTS // If PivotSet = PIVOTSET_WEEKLY and it\'s a new week then calc pivots if (PivotSet == PIVOTSET_WEEKLY) { datetime dtWeekStart0 = getWeekStart(Time); datetime dtWeekStart1 = getWeekStart(Time[i+1]); if (dtWeekStart0 != dtWeekStart1) { getPrevWeekPrices(dPrices,dtWeekStart0); getPivots(dPivots,dPrices); } } // end weekly pivot block // MONTHLY PIVOTS // If PivotSet = PIVOTSET_MONTHLY and it\'s a new month then calc pivots if (PivotSet == PIVOTSET_MONTHLY) { datetime dtMonthStart0 = getMonthStart(Time); datetime dtMonthStart1 = getMonthStart(Time[i+1]); if (dtMonthStart0 != dtMonthStart1) { getPrevMonthPrices(dPrices,dtMonthStart0); getPivots(dPivots,dPrices); } } // end weekly pivot block // If the pivots have been updated, this will push out the changes // if the pivots haven\'t been updated, the previous values will carry forward dR3Buffer = dPivots[PIVOT_R3]; dR2Buffer = dPivots[PIVOT_R2]; dR1Buffer = dPivots[PIVOT_R1]; dPPBuffer = dPivots[PIVOT_PP]; dS1Buffer = dPivots[PIVOT_S1]; dS2Buffer = dPivots[PIVOT_S2]; dS3Buffer = dPivots[PIVOT_S3]; } return(0); } void getPivots(double& pivots, double prices) { // Calculate the pivots pivots[PIVOT_PP] = NormalizeDouble((prices[PRICE_HIGH] + prices[PRICE_LOW] + prices[PRICE_CLOSE]) / 3,Digits); pivots[PIVOT_R1] = NormalizeDouble(pivots[PIVOT_PP] + ((prices[PRICE_HIGH] - prices[PRICE_LOW]) * 0.382),Digits); pivots[PIVOT_S1] = NormalizeDouble(pivots[PIVOT_PP] - ((prices[PRICE_HIGH] - prices[PRICE_LOW]) * 0.382),Digits); pivots[PIVOT_R2] = NormalizeDouble(pivots[PIVOT_PP] + ((prices[PRICE_HIGH] - prices[PRICE_LOW]) * 0.618),Digits); pivots[PIVOT_S2] = NormalizeDouble(pivots[PIVOT_PP] - ((prices[PRICE_HIGH] - prices[PRICE_LOW]) * 0.618),Digits); pivots[PIVOT_R3] = NormalizeDouble(pivots[PIVOT_PP] + ((prices[PRICE_HIGH] - prices[PRICE_LOW]) * 1.000),Digits); pivots[PIVOT_S3] = NormalizeDouble(pivots[PIVOT_PP] - ((prices[PRICE_HIGH] - prices[PRICE_LOW]) * 1.000),Digits); } void getPrevDayPrices(double& prices, datetime timestamp) { // Get the last bar of the previous trading day // since iBarShift exact param = false, the previous existing bar will be returned int iBarIndex = iBarShift(NULL,PERIOD_H1,timestamp-SECONDS_IN_HOUR,false); datetime dtPrevDayStart = getDayStart(iTime(NULL,PERIOD_H1,iBarIndex)); // Get close price for the day and set initial values for high and low prices[PRICE_HIGH] = iHigh (NULL,PERIOD_H1,iBarIndex); prices[PRICE_LOW] = iLow (NULL,PERIOD_H1,iBarIndex); prices[PRICE_OPEN] = iOpen (NULL,PERIOD_H1,iBarIndex); prices[PRICE_CLOSE] = iClose(NULL,PERIOD_H1,iBarIndex); iBarIndex++; // Iterate back and check for high/low prices until all of previous trading day covered while (getDayStart(iTime(NULL,PERIOD_H1,iBarIndex)) == dtPrevDayStart) { prices[PRICE_HIGH] = MathMax(prices[PRICE_HIGH], iHigh (NULL,PERIOD_H1,iBarIndex)); prices[PRICE_LOW] = MathMin(prices[PRICE_LOW], iLow (NULL,PERIOD_H1,iBarIndex)); prices[PRICE_OPEN] = iOpen(NULL,PERIOD_H1,iBarIndex); iBarIndex++; } return; } void getPrevWeekPrices(double& prices, datetime timestamp) { // Get start of previous week datetime dtPrevWeekStart = timestamp - 7 * SECONDS_IN_DAY; // Get offset for previous week bar int iBarIndex = iBarShift(NULL,PERIOD_W1,dtPrevWeekStart,true); // Get pricing for previous week and fill array prices[PRICE_HIGH] = iHigh (NULL,PERIOD_W1,iBarIndex); prices[PRICE_LOW] = iLow (NULL,PERIOD_W1,iBarIndex); prices[PRICE_OPEN] = iOpen (NULL,PERIOD_W1,iBarIndex); prices[PRICE_CLOSE] = iClose(NULL,PERIOD_W1,iBarIndex); return; } void getPrevMonthPrices(double& prices, datetime timestamp) { // Get start of previous month datetime dtPrevMonthStart = getMonthStart(timestamp - SECONDS_IN_DAY); // Get offset for previous month bar int iBarIndex = iBarShift(NULL,PERIOD_MN1,dtPrevMonthStart,true); // Get pricing for previous week and fill array prices[PRICE_HIGH] = iHigh (NULL,PERIOD_MN1,iBarIndex); prices[PRICE_LOW] = iLow (NULL,PERIOD_MN1,iBarIndex); prices[PRICE_OPEN] = iOpen (NULL,PERIOD_MN1,iBarIndex); prices[PRICE_CLOSE] = iClose(NULL,PERIOD_MN1,iBarIndex); return; } datetime getDayStart(datetime timestamp) { // Strip seconds from timestamp // (probably not required) timestamp -= TimeSeconds(timestamp); // Strip minutes from timestamp timestamp -= TimeMinute(timestamp) * SECONDS_IN_MINUTE; // Subtract enough hours to reach previous day start if (TimeHour(timestamp) >= DayStartHour) timestamp -= (TimeHour(timestamp) - DayStartHour) * SECONDS_IN_HOUR; else timestamp -= (TimeHour(timestamp) + (24 - DayStartHour)) * SECONDS_IN_HOUR; return(timestamp); } datetime getWeekStart(datetime timestamp) { // Strip seconds from timestamp // (probably not required) timestamp -= TimeSeconds(timestamp); // Strip minutes from timestamp timestamp -= TimeMinute(timestamp) * SECONDS_IN_MINUTE; // Strip hours from timestamp timestamp -= TimeHour(timestamp) * SECONDS_IN_HOUR; // Strip days past Sunday from timestamp timestamp -= TimeDayOfWeek(timestamp) * SECONDS_IN_DAY; return(timestamp); } datetime getMonthStart(datetime timestamp) { // Strip seconds from timestamp // (probably not required) timestamp -= TimeSeconds(timestamp); // Strip minutes from timestamp timestamp -= TimeMinute(timestamp) * SECONDS_IN_MINUTE; // Strip hours from timestamp timestamp -= TimeHour(timestamp) * SECONDS_IN_HOUR; // Strip days past 1 from timestamp timestamp -= (TimeDay(timestamp) - 1) * SECONDS_IN_DAY; return(timestamp); }
TK29帖子1楼右侧xm竖版广告90-240
个性签名

阅尽天下指标
搬砖开始,始于2014

广告
TK30+TK31帖子一樓廣告
TK30+TK31帖子一樓廣告
WLLYH
注册时间2016-09-17
发表于:2016-09-18 10:49只看该作者
3楼
谢谢老师分享
lzaaa
注册时间2016-10-15
goodday
注册时间2016-12-06
发表于:2016-12-07 11:22只看该作者
5楼
谢谢楼主分享

本站免责声明:

1、本站所有广告及宣传信息均与韬客无关,如需投资请依法自行决定是否投资、斟酌资金安全及交易亏损风险;

2、韬客是独立的、仅为投资者提供交流的平台,网友发布信息不代表韬客的观点与意思表示,所有因网友发布的信息而造成的任何法律后果、风险与责任,均与韬客无关;

3、金融交易存在极高法律风险,未必适合所有投资者,请不要轻信任何高额投资收益的诱导而贸然投资;投资保证金交易导致的损失可能超过您投入的资金和预期。请您考虑自身的投资经验及风险承担能力,进行合法、理性投资;

4、所有投资者的交易帐户应仅限本人使用,不应交由第三方操作,对于任何接受第三方喊单、操盘、理财等操作的投资和交易,由此导致的任何风险、亏损及责任由投资者个人自行承担;

5、韬客不隶属于任何券商平台,亦不受任何第三方控制,韬客不邀约客户投资任何保证金交易,不接触亦不涉及投资者的任何资金及账户信息,不代理任何交易操盘行为,不向客户推荐任何券商平台,亦不存在其他任何推荐行为。投资者应自行选择券商平台,券商平台的任何行为均与韬客无关。投资者注册及使用韬客即表示其接受和认可上述声明,并自行承担法律风险。

版权所有:韬客外汇论坛 www.talkfx.com 联络我们:[email protected]