Price Data Components
Miscellaneous
0
Views
0
Downloads
0
Favorites
IndexDollar
//+------------------------------------------------------------------+
//| IndexDollar.mq4 |
//| Copyright © 2005, Zmiuka Software Corp. |
//| |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2005, Zmiuka Software Corp."
//----
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 DeepPink
//---- input parameters
extern double GBP0=1.9272;
extern double EUR0=1.3471;
extern double CHF0=1.1486;
extern double JPY0=103.78;
//---- buffers
double IndexBuffer[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- indicator line
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,IndexBuffer);
SetIndexEmptyValue(0,0);
ArrayInitialize(IndexBuffer,0);
//---- name for DataWindow and indicator subwindow label
short_name="Index =";
IndicatorShortName(short_name);
SetIndexDrawBegin(0,2);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int counted_bars=IndicatorCounted();
int limit, i;
double USD;
double Data1, Data2, Data3, Data4;
i=(3000-counted_bars)+1;
//----
while(i>=0)
{
Data1=iClose("GBPUSD",NULL,i);
Data2=iClose("EURUSD",NULL,i);
Data3=iClose("USDCHF",NULL,i);
Data4=iClose("USDJPY",NULL,i);
USD= (GBP0 - Data1) * 100000
+ ((EUR0 - Data2) * 100000)
+ ((Data3 - CHF0) * 100000/Data3)
+ ((Data4 - JPY0) * 100000/Data4);
IndexBuffer[i]=USD; Comment("IndexDollar");
i--;
}
//----
return(0);
}
//+------------------------------------------------------------------+
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
---