Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
123
Boris Sedov  
fractalfreak:

Great indi!!!!


Could you add a candle colour option?


Green for price above the MA (MA green), red for price below MA (MA red) and grey for price below green MA and price above red MA?


That would be great!


Thx


Soon it will be added.
SkystheLimit 986  
fractalfreak:



Great!


Thx!!



Hi,


did you have time to do it?


Thx

Boris Sedov  
fractalfreak:

Hi,

did you have time to do it?

Thx

Changes have been made, the new version will be available after review.
aham  

Hi Boris. Might seem like an odd question but where did you get the music for your video. I've been looking for something exactly like. Who is the composer/artist?


Thanks in advance.

Aham

Boris Sedov  
aham:

Hi Boris. Might seem like an odd question but where did you get the music for your video. I've been looking for something exactly like. Who is the composer/artist?


Thanks in advance.

Aham

Hi!

The video features the following song.
Jason Farnham - Wedding Invitation.
tristan770  

Hi Boris, how do I use this in an EA - I tried to get the values of buffers 12,13 and 14 but it returns values 0.0?

Boris Sedov  
tristan770 :

Hi Boris, how do I use this in an EA - I tried to get the values of buffers 12,13 and 14 but it returns values 0.0?

For advisor make better use of the buffer 12.
tristan770  
Boris, can you post the iCustom command to get the value of buffer 12 of the indicator into an EA - I have tried and it always returns the value 0.0 ?
Boris Sedov  
tristan770:
Boris, can you post the iCustom command to get the value of buffer 12 of the indicator into an EA - I have tried and it always returns the value 0.0 ?
double dfa_12_0,dfa_12_1,dfa_12_2,dfa_12_3,dfa_12_4,dfa_12_5,
       dfa_13_0,dfa_13_1,dfa_13_2,dfa_13_3,dfa_13_4,dfa_13_5,
       dfa_14_0,dfa_14_1,dfa_14_2,dfa_14_3,dfa_14_4,dfa_14_5;

dfa_12_0=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,12,0);
dfa_12_1=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,12,1);
dfa_12_2=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,12,2);
dfa_12_3=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,12,3);
dfa_12_4=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,12,4);
dfa_12_5=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,12,5);

dfa_13_0=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,13,0);
dfa_13_1=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,13,1);
dfa_13_2=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,13,2);
dfa_13_3=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,13,3);
dfa_13_4=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,13,4);
dfa_13_5=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,13,5);

dfa_14_0=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,14,0);
dfa_14_1=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,14,1);
dfa_14_2=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,14,2);
dfa_14_3=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,14,3);
dfa_14_4=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,14,4);
dfa_14_5=iCustom(NULL,0,"Market\\DigitalFilterA",false,false,false,false,14,5);

Print("Buffer #12:   ",dfa_12_0==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_12_0,Digits),"; ",dfa_12_1==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_12_1,Digits),"; ",dfa_12_2==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_12_2,Digits),"; ",dfa_12_3==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_12_3,Digits),"; ",dfa_12_4==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_12_4,Digits),"; ",dfa_12_5==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_12_5,Digits));
Print("Buffer #13:   ",dfa_13_0==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_13_0,Digits),"; ",dfa_13_1==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_13_1,Digits),"; ",dfa_13_2==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_13_2,Digits),"; ",dfa_13_3==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_13_3,Digits),"; ",dfa_13_4==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_13_4,Digits),"; ",dfa_13_5==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_13_5,Digits));
Print("Buffer #14:   ",dfa_14_0==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_14_0,Digits),"; ",dfa_14_1==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_14_1,Digits),"; ",dfa_14_2==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_14_2,Digits),"; ",dfa_14_3==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_14_3,Digits),"; ",dfa_14_4==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_14_4,Digits),"; ",dfa_14_5==EMPTY_VALUE?"EmptyValue":DoubleToString(dfa_14_5,Digits));

// Buffer #14:   EmptyValue; EmptyValue; EmptyValue; 1.10230; 1.10233; 1.10238
// Buffer #13:   EmptyValue; 1.10235; 1.10231; 1.10230; EmptyValue; EmptyValue
// Buffer #12:   1.10242; 1.10235; 1.10231; 1.10230; 1.10233; 1.10238

Note the path to the indicator.
Igor Dervuk  
А советник есть у Вас на основе этого индикатора (как на видео ) ?
M111  

Hi Boris,


merely it's not clear to me how to catch indicator-buffer (#12) from bars in the past. Where is the neccessary position in iCustom-function ? (n, n-1, n-2, ... n-x);

On MT4 - datawindow, i can see 12 x Histogramm, and below: 3 x Value; i like to catch content of Value (buffers, fields).

Please advise / give me a clear example, how to catch Value-content (from past bars).

Thank you very much !!

BR, M111

M111  
M111:

Hi Boris,


merely it's not clear to me how to catch indicator-buffer (#12) from bars in the past. Where is the neccessary position in iCustom-function ? (n, n-1, n-2, ... n-x);

On MT4 - datawindow, i can see 12 x Histogramm, and below: 3 x Value; i like to catch content of Value (buffers, fields).

Please advise / give me a clear example, how to catch Value-content (from past bars).

Thank you very much !!

BR, M111

OK, found solution myself, Thx.
chao tang  
你好,声音的提示和k线颜色的变化为什么慢3根k线?谢谢
Boris Sedov  
chao tang:
你好,声音的提示和k线颜色的变化为什么慢3根k线?谢谢

Hi!

In the input parameters - "Sounds" (can be disabled).

The color can be set in the next tab - "Colors".

chao tang  
Boris Sedov:

嗨!

在输入参数 - “声音”(可以禁用)。

可以在下一个选项卡 - “颜色”中设置颜色。

你好,这些我知道,你可能没理解我的意思。我说的是声音的提示和k线的颜色变化要迟3根k线

chao tang  
chao tang:

你好,这些我知道,你可能没理解我的意思。我说的是声音的提示和k线的颜色变化要迟3根k线

就是说提示音提示的时候和k线颜色变化同时延迟了3根k线

chao tang  
chao tang:

就是说提示音提示的时候和k线颜色变化同时延迟了3根k线

好像是翻译的问题,没有翻译我的意思

chao tang  
chao tang:

好像是翻译的问题,没有翻译我的意思

When the tone appears, 3 K lines have been delayed.

Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
123