Indicators Used
0
Views
0
Downloads
0
Favorites
RSI_LiDo1_open
//+------------------------------------------------------------------+
//| 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 |
//| |
//| Tweaked by Bluto 06/23/07 to work with Super RSI |
//+------------------------------------------------------------------+
#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 DodgerBlue
#property indicator_color2 Lime
#property indicator_level1 75
#property indicator_level2 65
#property indicator_level3 35
#property indicator_level4 25
//---- input parameters
extern int Default_RSIPeriod = 4;
//---- buffers
double dRsiLine[];
double dRsiDots[];
//---- vars
string SR_RSIPeriod;
int RSIPeriod = 0;
int init() {
SR_RSIPeriod=AccountNumber()+"_"+Symbol()+"_SR_RSIPeriod";
if (GlobalVariableCheck(SR_RSIPeriod))
{
RSIPeriod = GlobalVariableGet(SR_RSIPeriod);
IndicatorShortName("RSI LiDo @ Super-RSI Mode (" + RSIPeriod + ")");
}
else
{
RSIPeriod = Default_RSIPeriod;
IndicatorShortName("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() {
if (GlobalVariableCheck(SR_RSIPeriod))
{
if (GlobalVariableGet(SR_RSIPeriod)!= RSIPeriod)
{
RSIPeriod = GlobalVariableGet(SR_RSIPeriod);
IndicatorShortName("RSI LiDo @ Super-RSI Mode (" + RSIPeriod + ")");
}
}
// Determine how far back to iterate
int iBarsToCalc = Bars - IndicatorCounted();
if (iBarsToCalc < Bars) iBarsToCalc++;
for (int i=iBarsToCalc-1;i>=0;i--) {
dRsiLine[i] = iRSI(Symbol(),0,RSIPeriod,PRICE_OPEN,i);
dRsiDots[i] = dRsiLine[i];
}
}
//__________________
//Will Code For Pips
Comments
Markdown Formatting Guide
# H1
## H2
### H3
**bold text**
*italicized text*
[title](https://www.example.com)

`code`
```
code block
```
> blockquote
- Item 1
- Item 2
1. First item
2. Second item
---