HTID
Miscellaneous
Implements a curve of type %1
0 Views
0 Downloads
0 Favorites
HTID

#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_color2 Red

int gi_76 = 7;
double gd_80 = 50.6;
int g_bars_88 = 1500;
double g_ibuf_92[];
double g_ibuf_96[];
double g_ibuf_100[];
double g_ibuf_104[];

int init() {
   IndicatorBuffers(4);
   SetIndexStyle(0, DRAW_HISTOGRAM, STYLE_SOLID, 3);
   SetIndexBuffer(0, g_ibuf_100);
   SetIndexStyle(1, DRAW_HISTOGRAM, STYLE_SOLID, 3);
   SetIndexBuffer(1, g_ibuf_104);
   SetIndexBuffer(2, g_ibuf_92);
   SetIndexBuffer(3, g_ibuf_96);
   IndicatorShortName("HTID (" + gi_76 + ")");
   return (0);
}

int deinit() {
   return (0);
}

int start() {
   double ld_8;
   double ld_16;
   double ld_32;
   if (g_bars_88 >= Bars) g_bars_88 = Bars;
   SetIndexDrawBegin(0, Bars - g_bars_88 + gi_76);
   SetIndexDrawBegin(1, Bars - g_bars_88 + gi_76);
   int l_ind_counted_4 = IndicatorCounted();
   if (Bars <= gi_76 + 1) return (0);
   if (l_ind_counted_4 < gi_76 + 1) {
      for (int li_0 = 1; li_0 <= gi_76; li_0++) g_ibuf_92[g_bars_88 - li_0] = 0.0;
      for (li_0 = 1; li_0 <= gi_76; li_0++) g_ibuf_96[g_bars_88 - li_0] = 0.0;
   }
   for (li_0 = g_bars_88 - gi_76; li_0 >= 0; li_0--) {
      ld_8 = High[iHighest(NULL, 0, MODE_HIGH, gi_76, li_0 - gi_76 + 1)];
      ld_16 = Low[iLowest(NULL, 0, MODE_LOW, gi_76, li_0 - gi_76 + 1)];
      ld_32 = ld_8 - (ld_8 - ld_16) * gd_80 / 100.0;
      g_ibuf_92[li_0 - gi_76 + 6] = ld_32;
      g_ibuf_96[li_0 - gi_76 - 1] = ld_32;
   }
   for (int li_40 = g_bars_88 - gi_76; li_40 >= 0; li_40--) {
      if (g_ibuf_92[li_40] > g_ibuf_96[li_40]) {
         g_ibuf_100[li_40] = 1;
         g_ibuf_104[li_40] = 0;
      } else {
         g_ibuf_100[li_40] = 0;
         g_ibuf_104[li_40] = -1;
      }
   }
   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 ---