论坛全局菜单下方 - TICKMILL 285X70论坛全局菜单下方 - ThinkMarkets285X70论坛全局菜单下方 - 荔枝返现285X70论坛全局菜单下方 -  icmarkets285X70
查看:3316回复:11
redreg
注册时间2007-07-21
谁能帮忙去掉这个fibo显示.
楼主发表于:2009-06-14 12:36只看该作者倒序浏览
1楼 电梯直达
电梯直达
谁能帮忙去掉这个指标的fibo显示线. 我的意思是不显示黄线和红线,只要显示blue线 先谢了
TK29帖子1楼右侧xm竖版广告90-240
个性签名

长期持仓.

广告
TK30+TK31帖子一樓廣告
TK30+TK31帖子一樓廣告
redreg
注册时间2007-07-21
楼主发表于:2009-06-14 12:37只看该作者
2楼
//+------------------------------------------------------------------+ //| ICWR indicator | //| Copyright ?2005, John Lotoski | //| mailto:[email protected] | //| | //+------------------------------------------------------------------+ #property copyright "Copyright ?2005, [email protected]" #property link "mailto:[email protected]" #property indicator_chart_window #property indicator_buffers 1 #property indicator_color1 Blue //---- indicator parameters extern int ExtDepth=12; extern int ExtDeviation=5; extern int ExtBackstep=3; extern int RequiredWaveHeight=40; //---- indicator buffers double ExtMapBuffer; double ExtMapBuffer2; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { IndicatorBuffers(2); //---- drawing settings SetIndexStyle(0,DRAW_SECTION); //---- indicator buffers mapping SetIndexBuffer(0,ExtMapBuffer); SetIndexBuffer(1,ExtMapBuffer2); SetIndexEmptyValue(0,0.0); ArraySetAsSeries(ExtMapBuffer,true); ArraySetAsSeries(ExtMapBuffer2,true); //---- indicator short name IndicatorShortName("ICWR("+ExtDepth+","+ExtDeviation+","+ExtBackstep+")"); //---- initialization done return(0); } //+------------------------------------------------------------------+ //| Custor indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() // Removes all lines and text { // from the chart upon removal // of the indicator ObjectDelete("ActiveWave"); ObjectDelete("Fibo"); return(0); } //+------------------------------------------------------------------+ //| Main function | //+------------------------------------------------------------------+ int start() { int shift,back,lasthighpos,lastlowpos,LastActivePos; double val,res; double curlow,curhigh,lasthigh,lastlow,LastActive; int AWStartPos, AWEndPos; double AWStart, AWEnd; double FiboL, FiboH, FiboLC, FiboLR, FiboHR, FiboHC; for(shift=Bars-ExtDepth; shift>=0; shift--) { // The beginning code of this for loop is dedicated // to finding a low endpoint of a zig-zag val=Low[Lowest(NULL,0,MODE_LOW,ExtDepth,shift)]; // Start at beginning of data // - Get low of last depth (12) periods // - Repeat low search of 12 periods, // advancing 1 bar every search (for loop) if(val==lastlow) // If this is not a new low val=0.0; // - Reset the val marker to dbl 0 else // Otherwise, if it is a new low { lastlow=val; // - Record this new low in lastlow for future reference if((Low[shift]-val)>(ExtDeviation*Point)) val=0.0; // If the low of the current bar is 6 or // more pips greater than the lowest low of the last // depth (12) periods, then reset val to dbl 0. // Ie: continue the zig because the line is going up else // Otherwise, if the current low is within 6 pips { // of the lowest low of the last 12 bars for(back=1; back<=ExtBackstep; back++) { // Check back 3 bars, and if each value over those // three bars is greater than the current lowest low, // then reset the map buffer value to 0 because // we have a new lower low. res=ExtMapBuffer[shift+back]; if((res!=0)&&(res>val)) ExtMapBuffer[shift+back]=0.0; } } } ExtMapBuffer[shift]=val; // Set our current bar to 0 (continuation of zig) if: // - A new low has not been reached; // - The current bar is 6 pips beyond the lowest low // Set our current bar to the lowest low if: // - It is within 6 pips of the lowest low and // and go back over the last three bars and set them // to continuation of zig as well if they are greater // than the new lowest value // Same deal for below, except the case is reversed // and everything is done in terms of trying to find // the high zig-zag endpoint val=High[Highest(NULL,0,MODE_HIGH,ExtDepth,shift)]; if(val==lasthigh) val=0.0; else { lasthigh=val; if((val-High[shift])>(ExtDeviation*Point)) val=0.0; else { for(back=1; back<=ExtBackstep; back++) { res=ExtMapBuffer2[shift+back]; if((res!=0)&&(res=0; shift--) { curlow=ExtMapBuffer[shift]; curhigh=ExtMapBuffer2[shift]; if((curlow==0)&&(curhigh==0)) // Break into the next cycle of the loop continue; // to try and find the next zig-zap endpoint if(curhigh!=0) // If there is a current high, then: { if(lasthigh>0) // If there was a previous high already: { if(lasthigh0) { if(lastlow>curlow) ExtMapBuffer[lastlowpos]=0; else ExtMapBuffer[shift]=0; } if((curlow=0; shift--) { // Go through all the bars if(shift>=Bars-ExtDepth) // If we are not at the beginning comparison bars, ExtMapBuffer[shift]=0.0; // then set the low buffer to 0 else { // Otherwise: res=ExtMapBuffer2[shift]; // - If the current bar has a high, set the low if(res!=0.0) // buffer to contain the high ExtMapBuffer[shift]=res; } // Looks like this function brings the highs into the lows } // so that all the zig-zags can be drawn from one function LastActive = -1; LastActivePos = -1; for(shift=0; shift<=Bars-ExtDepth; shift++) { if(ExtMapBuffer[shift]!=0.0) { if(LastActive > 0) { if(MathAbs(LastActive - ExtMapBuffer[shift]) >= RequiredWaveHeight*Point) { AWStartPos = shift; AWStart = ExtMapBuffer[shift]; AWEndPos = LastActivePos; AWEnd = LastActive; if(ObjectFind("ActiveWave") != 0) { ObjectCreate("ActiveWave", OBJ_TREND, 0, Time[AWStartPos], AWStart, Time[AWEndPos], AWEnd); ObjectSet("ActiveWave", OBJPROP_STYLE, STYLE_SOLID); ObjectSet("ActiveWave", OBJPROP_COLOR, Red); ObjectSet("ActiveWave", OBJPROP_WIDTH, 3); ObjectSet("ActiveWave", OBJPROP_RAY, false); } else { ObjectMove("ActiveWave", 0, Time[AWStartPos], AWStart); ObjectMove("ActiveWave", 1, Time[AWEndPos], AWEnd); } if(AWStart < AWEnd) { FiboL = AWStart; FiboH = AWEnd; } else { FiboL = AWEnd; FiboH = AWStart; } FiboLC = FiboL + (FiboH - FiboL)*0.25; FiboLR = FiboL + (FiboH - FiboL)*0.382; FiboHR = FiboL + (FiboH - FiboL)*0.618; FiboHC = FiboL + (FiboH - FiboL)*0.75; if(ObjectFind("Fibo") != 0) { ObjectCreate("Fibo", OBJ_FIBO, 0, Time[AWStartPos], AWStart, Time[AWEndPos], AWEnd); ObjectSet("Fibo", OBJPROP_STYLE, STYLE_SOLID); ObjectSet("Fibo", OBJPROP_COLOR, Green); ObjectSet("Fibo", OBJPROP_WIDTH, 2); ObjectSet("Fibo", OBJPROP_FIBOLEVELS, 6); /* ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+0, FiboL); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+1, FiboLC); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+2, FiboLR); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+3, FiboHR); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+4, FiboHC); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+6, FiboH); */ ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+0, 0); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+1, 0.25); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+2, 0.382); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+3, 0.618); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+4, 0.75); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+5, 1); } else { ObjectMove("Fibo", 0, Time[AWStartPos], AWStart); ObjectMove("Fibo", 1, Time[AWEndPos], AWEnd); } break; } } LastActive = ExtMapBuffer[shift]; LastActivePos = shift; } } }111.gif111.gif
个性签名

长期持仓.

广告
论坛谏言--外汇交易不应是你投资的全部,交易外汇也不应是你生活的全部
redreg
注册时间2007-07-21
楼主发表于:2009-06-15 00:04只看该作者
3楼
不懂编程阿,不知道难不难,
个性签名

长期持仓.

广告
论坛谏言--外汇交易不应是你投资的全部,交易外汇也不应是你生活的全部
redreg
注册时间2007-07-21
楼主发表于:2009-06-15 00:07只看该作者
4楼
哪位好心人帮个忙,俺送1000分表示感谢.
redreg
注册时间2007-07-21
楼主发表于:2009-06-15 12:08只看该作者
5楼
等好心人帮个忙:034:
redreg
注册时间2007-07-21
楼主发表于:2009-06-15 12:08只看该作者
6楼
等好心人 ,
个性签名

长期持仓.

redreg
注册时间2007-07-21
楼主发表于:2009-06-15 12:10只看该作者
7楼
试回帖 ,
sewen
注册时间2008-03-06
发表于:2009-10-25 07:42只看该作者
9楼
//+------------------------------------------------------------------+ //| ICWR indicator | //| Copyright ?2005, John Lotoski | //| mailto:[email protected] | //| | //+------------------------------------------------------------------+ #property copyright "Copyright ?2005, [email protected]" #property link "mailto:[email protected]" #property indicator_chart_window #property indicator_buffers 1 #property indicator_color1 Blue //---- indicator parameters extern int ExtDepth=12; extern int ExtDeviation=5; extern int ExtBackstep=3; extern int RequiredWaveHeight=40; //---- indicator buffers double ExtMapBuffer; double ExtMapBuffer2; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { IndicatorBuffers(2); //---- drawing settings SetIndexStyle(0,DRAW_SECTION); //---- indicator buffers mapping SetIndexBuffer(0,ExtMapBuffer); SetIndexBuffer(1,ExtMapBuffer2); SetIndexEmptyValue(0,0.0); ArraySetAsSeries(ExtMapBuffer,true); ArraySetAsSeries(ExtMapBuffer2,true); //---- indicator short name IndicatorShortName("ICWR("+ExtDepth+","+ExtDeviation+","+ExtBackstep+")"); //---- initialization done return(0); } //+------------------------------------------------------------------+ //| Custor indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() // Removes all lines and text { // from the chart upon removal // of the indicator ObjectDelete("ActiveWave"); ObjectDelete("Fibo"); return(0); } //+------------------------------------------------------------------+ //| Main function | //+------------------------------------------------------------------+ int start() { int shift,back,lasthighpos,lastlowpos,LastActivePos; double val,res; double curlow,curhigh,lasthigh,lastlow,LastActive; int AWStartPos, AWEndPos; double AWStart, AWEnd; double FiboL, FiboH, FiboLC, FiboLR, FiboHR, FiboHC; for(shift=Bars-ExtDepth; shift>=0; shift--) { // The beginning code of this for loop is dedicated // to finding a low endpoint of a zig-zag val=Low[Lowest(NULL,0,MODE_LOW,ExtDepth,shift)]; // Start at beginning of data // - Get low of last depth (12) periods // - Repeat low search of 12 periods, // advancing 1 bar every search (for loop) if(val==lastlow) // If this is not a new low val=0.0; // - Reset the val marker to dbl 0 else // Otherwise, if it is a new low { lastlow=val; // - Record this new low in lastlow for future reference if((Low[shift]-val)>(ExtDeviation*Point)) val=0.0; // If the low of the current bar is 6 or // more pips greater than the lowest low of the last // depth (12) periods, then reset val to dbl 0. // Ie: continue the zig because the line is going up else // Otherwise, if the current low is within 6 pips { // of the lowest low of the last 12 bars for(back=1; back<=ExtBackstep; back++) { // Check back 3 bars, and if each value over those // three bars is greater than the current lowest low, // then reset the map buffer value to 0 because // we have a new lower low. res=ExtMapBuffer[shift+back]; if((res!=0)&&(res>val)) ExtMapBuffer[shift+back]=0.0; } } } ExtMapBuffer[shift]=val; // Set our current bar to 0 (continuation of zig) if: // - A new low has not been reached; // - The current bar is 6 pips beyond the lowest low // Set our current bar to the lowest low if: // - It is within 6 pips of the lowest low and // and go back over the last three bars and set them // to continuation of zig as well if they are greater // than the new lowest value // Same deal for below, except the case is reversed // and everything is done in terms of trying to find // the high zig-zag endpoint val=High[Highest(NULL,0,MODE_HIGH,ExtDepth,shift)]; if(val==lasthigh) val=0.0; else { lasthigh=val; if((val-High[shift])>(ExtDeviation*Point)) val=0.0; else { for(back=1; back<=ExtBackstep; back++) { res=ExtMapBuffer2[shift+back]; if((res!=0)&&(res=0; shift--) { curlow=ExtMapBuffer[shift]; curhigh=ExtMapBuffer2[shift]; if((curlow==0)&&(curhigh==0)) // Break into the next cycle of the loop continue; // to try and find the next zig-zap endpoint if(curhigh!=0) // If there is a current high, then: { if(lasthigh>0) // If there was a previous high already: { if(lasthigh0) { if(lastlow>curlow) ExtMapBuffer[lastlowpos]=0; else ExtMapBuffer[shift]=0; } if((curlow=0; shift--) { // Go through all the bars if(shift>=Bars-ExtDepth) // If we are not at the beginning comparison bars, ExtMapBuffer[shift]=0.0; // then set the low buffer to 0 else { // Otherwise: res=ExtMapBuffer2[shift]; // - If the current bar has a high, set the low if(res!=0.0) // buffer to contain the high ExtMapBuffer[shift]=res; } // Looks like this function brings the highs into the lows } // so that all the zig-zags can be drawn from one function LastActive = -1; LastActivePos = -1; for(shift=0; shift<=Bars-ExtDepth; shift++) { if(ExtMapBuffer[shift]!=0.0) { if(LastActive > 0) { if(MathAbs(LastActive - ExtMapBuffer[shift]) >= RequiredWaveHeight*Point) { AWStartPos = shift; AWStart = ExtMapBuffer[shift]; AWEndPos = LastActivePos; AWEnd = LastActive; if(AWStart < AWEnd) { FiboL = AWStart; FiboH = AWEnd; } else { FiboL = AWEnd; FiboH = AWStart; } FiboLC = FiboL + (FiboH - FiboL)*0.25; FiboLR = FiboL + (FiboH - FiboL)*0.382; FiboHR = FiboL + (FiboH - FiboL)*0.618; FiboHC = FiboL + (FiboH - FiboL)*0.75; break; } } LastActive = ExtMapBuffer[shift]; LastActivePos = shift; } } }
loveice
注册时间2004-10-08
发表于:2009-10-25 07:59只看该作者
10楼
把下列一段阉割掉就行了 if(ObjectFind("Fibo") != 0) { ObjectCreate("Fibo", OBJ_FIBO, 0, Time[AWStartPos], AWStart, Time[AWEndPos], AWEnd); ObjectSet("Fibo", OBJPROP_STYLE, STYLE_SOLID); ObjectSet("Fibo", OBJPROP_COLOR, Green); ObjectSet("Fibo", OBJPROP_WIDTH, 2); ObjectSet("Fibo", OBJPROP_FIBOLEVELS, 6); /* ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+0, FiboL); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+1, FiboLC); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+2, FiboLR); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+3, FiboHR); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+4, FiboHC); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+6, FiboH); */ ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+0, 0); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+1, 0.25); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+2, 0.382); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+3, 0.618); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+4, 0.75); ObjectSet("Fibo", OBJPROP_FIRSTLEVEL+5, 1); } else { ObjectMove("Fibo", 0, Time[AWStartPos], AWStart); ObjectMove("Fibo", 1, Time[AWEndPos], AWEnd); } break;
loveice
注册时间2004-10-08
发表于:2009-10-25 07:59只看该作者
11楼
阉割后的程序代码是: //+------------------------------------------------------------------+ //| ICWR indicator | //| Copyright ?2005, John Lotoski | //| mailto:[email protected] | //| | //+------------------------------------------------------------------+ #property copyright "Copyright ?2005, [email protected]" #property link "mailto:[email protected]" #property indicator_chart_window #property indicator_buffers 1 #property indicator_color1 Blue //---- indicator parameters extern int ExtDepth=12; extern int ExtDeviation=5; extern int ExtBackstep=3; extern int RequiredWaveHeight=40; //---- indicator buffers double ExtMapBuffer; double ExtMapBuffer2; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { IndicatorBuffers(2); //---- drawing settings SetIndexStyle(0,DRAW_SECTION); //---- indicator buffers mapping SetIndexBuffer(0,ExtMapBuffer); SetIndexBuffer(1,ExtMapBuffer2); SetIndexEmptyValue(0,0.0); ArraySetAsSeries(ExtMapBuffer,true); ArraySetAsSeries(ExtMapBuffer2,true); //---- indicator short name IndicatorShortName("ICWR("+ExtDepth+","+ExtDeviation+","+ExtBackstep+")"); //---- initialization done return(0); } //+------------------------------------------------------------------+ //| Custor indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() // Removes all lines and text { // from the chart upon removal // of the indicator ObjectDelete("ActiveWave"); ObjectDelete("Fibo"); return(0); } //+------------------------------------------------------------------+ //| Main function | //+------------------------------------------------------------------+ int start() { int shift,back,lasthighpos,lastlowpos,LastActivePos; double val,res; double curlow,curhigh,lasthigh,lastlow,LastActive; int AWStartPos, AWEndPos; double AWStart, AWEnd; double FiboL, FiboH, FiboLC, FiboLR, FiboHR, FiboHC; for(shift=Bars-ExtDepth; shift>=0; shift--) { // The beginning code of this for loop is dedicated // to finding a low endpoint of a zig-zag val=Low[Lowest(NULL,0,MODE_LOW,ExtDepth,shift)]; // Start at beginning of data // - Get low of last depth (12) periods // - Repeat low search of 12 periods, // advancing 1 bar every search (for loop) if(val==lastlow) // If this is not a new low val=0.0; // - Reset the val marker to dbl 0 else // Otherwise, if it is a new low { lastlow=val; // - Record this new low in lastlow for future reference if((Low[shift]-val)>(ExtDeviation*Point)) val=0.0; // If the low of the current bar is 6 or // more pips greater than the lowest low of the last // depth (12) periods, then reset val to dbl 0. // Ie: continue the zig because the line is going up else // Otherwise, if the current low is within 6 pips { // of the lowest low of the last 12 bars for(back=1; back<=ExtBackstep; back++) { // Check back 3 bars, and if each value over those // three bars is greater than the current lowest low, // then reset the map buffer value to 0 because // we have a new lower low. res=ExtMapBuffer[shift+back]; if((res!=0)&&(res>val)) ExtMapBuffer[shift+back]=0.0; } } } ExtMapBuffer[shift]=val; // Set our current bar to 0 (continuation of zig) if: // - A new low has not been reached; // - The current bar is 6 pips beyond the lowest low // Set our current bar to the lowest low if: // - It is within 6 pips of the lowest low and // and go back over the last three bars and set them // to continuation of zig as well if they are greater // than the new lowest value // Same deal for below, except the case is reversed // and everything is done in terms of trying to find // the high zig-zag endpoint val=High[Highest(NULL,0,MODE_HIGH,ExtDepth,shift)]; if(val==lasthigh) val=0.0; else { lasthigh=val; if((val-High[shift])>(ExtDeviation*Point)) val=0.0; else { for(back=1; back<=ExtBackstep; back++) { res=ExtMapBuffer2[shift+back]; if((res!=0)&&(res=0; shift--) { curlow=ExtMapBuffer[shift]; curhigh=ExtMapBuffer2[shift]; if((curlow==0)&&(curhigh==0)) // Break into the next cycle of the loop continue; // to try and find the next zig-zap endpoint if(curhigh!=0) // If there is a current high, then: { if(lasthigh>0) // If there was a previous high already: { if(lasthigh0) { if(lastlow>curlow) ExtMapBuffer[lastlowpos]=0; else ExtMapBuffer[shift]=0; } if((curlow=0; shift--) { // Go through all the bars if(shift>=Bars-ExtDepth) // If we are not at the beginning comparison bars, ExtMapBuffer[shift]=0.0; // then set the low buffer to 0 else { // Otherwise: res=ExtMapBuffer2[shift]; // - If the current bar has a high, set the low if(res!=0.0) // buffer to contain the high ExtMapBuffer[shift]=res; } // Looks like this function brings the highs into the lows } // so that all the zig-zags can be drawn from one function LastActive = -1; LastActivePos = -1; for(shift=0; shift<=Bars-ExtDepth; shift++) { if(ExtMapBuffer[shift]!=0.0) { if(LastActive > 0) { if(MathAbs(LastActive - ExtMapBuffer[shift]) >= RequiredWaveHeight*Point) { AWStartPos = shift; AWStart = ExtMapBuffer[shift]; AWEndPos = LastActivePos; AWEnd = LastActive; if(ObjectFind("ActiveWave") != 0) { ObjectCreate("ActiveWave", OBJ_TREND, 0, Time[AWStartPos], AWStart, Time[AWEndPos], AWEnd); ObjectSet("ActiveWave", OBJPROP_STYLE, STYLE_SOLID); ObjectSet("ActiveWave", OBJPROP_COLOR, Red); ObjectSet("ActiveWave", OBJPROP_WIDTH, 3); ObjectSet("ActiveWave", OBJPROP_RAY, false); } else { ObjectMove("ActiveWave", 0, Time[AWStartPos], AWStart); ObjectMove("ActiveWave", 1, Time[AWEndPos], AWEnd); } if(AWStart < AWEnd) { FiboL = AWStart; FiboH = AWEnd; } else { FiboL = AWEnd; FiboH = AWStart; } FiboLC = FiboL + (FiboH - FiboL)*0.25; FiboLR = FiboL + (FiboH - FiboL)*0.382; FiboHR = FiboL + (FiboH - FiboL)*0.618; FiboHC = FiboL + (FiboH - FiboL)*0.75; } } LastActive = ExtMapBuffer[shift]; LastActivePos = shift; } } }
天称
注册时间2004-05-21
发表于:2009-10-27 07:40只看该作者
12楼
到设置那里把颜色改成无色——就是说看不见的色 不就可以了吗

本站免责声明:

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

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

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

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

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

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