[MT4指标]lido写的RSSI指标
附图指标 有点位标示 比较清晰的rsi
可以用作替代系统的rsi
mt4指标类型:震荡指标
是否能用在mt4手机版上:否
是否含有未来函数:无
rsi//+------------------------------------------------------------------+
//| RSI_LiDo.mq4 |
//| Copyright ? 2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net/ |
//| original "RSI_dot" concept by Accrete, and nicely tweaked by |
//| telsa of ForexFactory fame !! Many thanks telsa...Accrete |
//+------------------------------------------------------------------+
#property copyright "Copyright ? 2004, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net/"
#property indicator_separate_window
#property indicator_minimum 0
#property indicator_maximum 100
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_color2 Aqua
#property indicator_level1 75
#property indicator_level2 65
#property indicator_level3 35
#property indicator_level4 25
//---- input parameters
extern int RSIPeriod=12;
//---- buffers
double dRsiLine;
double dRsiDots;
int init() {
IndicatorShortName("ATM RSI LiDo (" + RSIPeriod + ")");
SetIndexBuffer(0,dRsiLine);
SetIndexStyle (0,DRAW_LINE);
SetIndexLabel (0,"RSI");
SetIndexBuffer(1,dRsiDots);
SetIndexStyle (1,DRAW_ARROW);
SetIndexArrow (1,159);
SetIndexLabel (1,"RSI");
return(0);
}
int start() {
// Determine how far back to iterate
int iBarsToCalc = Bars - IndicatorCounted();
if (iBarsToCalc < Bars) iBarsToCalc++;
for (int i=iBarsToCalc-1;i>=0;i--) {
dRsiLine = iRSI(NULL,0,RSIPeriod,PRICE_CLOSE,i);
dRsiDots = dRsiLine;
}
}
//__________________
//Will Code For Pips
ATM_RSI_LiDo.jpg
发表于:2015-06-17 10:06只看该作者
2楼
谢谢楼主,辛苦了
韬客社区www.talkfx.co
发表于:2015-07-01 12:08只看该作者
3楼
感谢楼主分享
韬客社区www.talkfx.co
发表于:2015-07-04 00:49只看该作者
4楼
谢谢分享
韬客社区www.talkfx.co
发表于:2017-04-27 14:03只看该作者
5楼
谢谢分享
发表于:2017-06-15 02:24只看该作者
7楼
有谁下了发个图看看怎么样
文章转自于韬客外汇论坛www.talkfx.com:http://www.talkfx.com/thread-912252-1-1.html
韬客社区www.talkfx.co