Indicators Used
Miscellaneous
0
Views
0
Downloads
0
Favorites
TG-Sinc-Spectrum-Cycle
/*
Generated by EX4-TO-MQ4 decompiler V4.0.224.1 []
Website: http://purebeam.biz
E-mail : purebeam@gmail.com
*/
#property copyright "Copyright © 2009, Anne Boleyn, PhD"
#property link "www.SimonShepherd.com"
#property indicator_separate_window
#property indicator_minimum -1.1
#property indicator_maximum 1.1
#property indicator_buffers 1
#property indicator_color1 Yellow
extern string x = "Tudor Girl SINC SPECTRUM CYCLE ANALYSER v1";
extern string x0 = "-------------- History (H) --------------";
extern int H = 5;
extern string x1 = "--------------- Bias (B) ----------------";
extern double B = 50.0;
extern string x2 = "------------ Signal Cleaner -------------";
extern bool Clean = FALSE;
extern string x3 = "---------- DIGITAL SINC FILTER ----------";
extern string x4 = "--------- Constraint Length (L) ---------";
extern int L = 5;
extern string x5 = "------------- Parameter (K) -------------";
extern double K = 2.0;
double g_ibuf_160[];
double gda_164[];
int g_index_168;
double gd_172;
double gd_180;
double gd_188 = 3.1415926535;
string gs_196;
int init() {
IndicatorBuffers(1);
SetIndexStyle(0, DRAW_LINE);
SetIndexBuffer(0, g_ibuf_160);
SetIndexEmptyValue(0, EMPTY_VALUE);
SetIndexDrawBegin(0, L + 1);
gs_196 = "TudorGirl\'s Sinc Spectrum Cycle (" + H + ", " + DoubleToStr(B, 1) + ", " + L + ", " + DoubleToStr(K, 1) + ")";
IndicatorShortName(gs_196);
SetLevelStyle(2, 1, Silver);
SetLevelValue(1, 0.0);
SetLevelValue(2, 0.99);
SetLevelValue(3, -0.99);
ArrayResize(gda_164, L);
gd_180 = 1;
gda_164[0] = 1.0;
for (g_index_168 = 1; g_index_168 < L; g_index_168++) {
gd_172 = K * g_index_168 / gd_188;
gda_164[g_index_168] = MathSin(gd_172) / gd_172;
gd_180 += gda_164[g_index_168];
}
for (g_index_168 = 0; g_index_168 < L; g_index_168++) gda_164[g_index_168] = gda_164[g_index_168] / gd_180;
return (0);
}
int start() {
int li_12;
double ld_28;
double ld_36;
int l_ind_counted_8 = IndicatorCounted();
int l_price_field_16 = 0;
if (l_ind_counted_8 > 0) li_12 = Bars - l_ind_counted_8;
if (l_ind_counted_8 < 0) return (0);
if (l_ind_counted_8 == 0) li_12 = Bars - L - 1;
for (int li_4 = li_12; li_4 >= 0; li_4--) {
ld_36 = 0;
for (int l_index_0 = 0; l_index_0 < L; l_index_0++) ld_36 += gda_164[l_index_0] * iStochastic(NULL, 0, H, 1, 1, MODE_SMA, l_price_field_16, MODE_MAIN, li_4 + l_index_0);
ld_28 = (ld_36 - 50.0) / B;
if (ld_28 > 0.9999) ld_28 = 0.9999;
if (ld_28 < -0.9999) ld_28 = -0.9999;
g_ibuf_160[li_4] = MathLog((ld_28 + 1.0) / (1 - ld_28)) / 10.0;
if (MathAbs(g_ibuf_160[li_4]) < 0.9 && Clean) g_ibuf_160[li_4] = 0.0;
}
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
---