Test_StochHisto

Author: Copyright � 2007, MetaQuotes Software Corp.
Test_StochHisto
0 Views
0 Downloads
0 Favorites
Test_StochHisto
//+------------------------------------------------------------------+
//|                                                         Test.mq4 |
//|                      Copyright © 2007, MetaQuotes Software Corp. |
//|                                        http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2007, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net"


//+------------------------------------------------------------------+
//| expert initialization function                                   |
//+------------------------------------------------------------------+
int init()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| expert deinitialization function                                 |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| expert start function                                            |
//+------------------------------------------------------------------+
int start()
  {
//----

  int MACD_Result;
  string MACD_Display;

  int FastEMA=12, SlowEMA=20,SignalPeriod=9; 

   double Stoch_Cur_gr    =iCustom(NULL,0,"StochHistogram",14,3,3,1,0); 
   double Stoch_Cur_rd    =iCustom(NULL,0,"StochHistogram",14,3,3,3,0); 
   double Stoch_Cur_Line  =iCustom(NULL,0,"StochHistogram",14,3,3,2,0); 
  
   
  Comment ( "Stoch Histo = ", Stoch_Cur_gr, "/", Stoch_Cur_rd,"/", Stoch_Cur_Line);

  return(0);


}

//+------------------------------------------------------------------+

Comments

Markdown supported. Formatting help

Markdown Formatting Guide

Element Markdown Syntax
Heading # H1
## H2
### H3
Bold **bold text**
Italic *italicized text*
Link [title](https://www.example.com)
Image ![alt text](image.jpg)
Code `code`
Code Block ```
code block
```
Quote > blockquote
Unordered List - Item 1
- Item 2
Ordered List 1. First item
2. Second item
Horizontal Rule ---