руцкий чмо он вам никогда не покажет граль только будет ходить возле вас и завидовать и обсырать.Торкит.
Inserted Video
2
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
DislikedGreetings,can someone help me by converting the following indicators from mt4 to mt5 please good people {file} {file}Ignored
Disliked{quote} I'm familiar with hull n nonlag, and based on just running it in the tester all 3 dont seem to repaint...Ignored
//get raw values double val_b0_i0 = iCustom(...0,0);//buffer 0, candle 0 double val_b0_i1 = iCustom(...0,1);//buffer 0, candle 1 double val_b1_i0 = iCustom(...1,0);//buffer 1, candle 0 double val_b1_i1 = iCustom(...1,1);//buffer 1, candle 1 //decide on values at candle 1 and 0 double val_0 = val_b0_i0;//give an initial value from buffer 0 if(val_b0_i0==0 || val_b0_i0==EMPTY_VALUE)val_0 = val_b1_i0;//but if buffer0 is 0 or empty, use the other buffer double val_1 = val_b0_i1; if(val_b0_i1==0 || val_b0_i1==EMPTY_VALUE)val_1 = val_b1_i1; //determine live slope from candle 1 to 0 int slope = 0; if(val_1<val_0)slope = 1; else if(val_1>val_0)slope = -1;
Disliked{quote} {quote} While I was testing out the repaint-check indicator, I did realize a nuance that would be an issue, I've already known but I didn't think of it earlier. The issue is that while drawn lines may have the same value and not repaint, if there is color changing going on then different drawing buffers will be used/cleared, and that gives an impression of repainting values when using icustom to get specific buffer values. A drawing line is a straight line of a single color/style/width between 2 points. When there is color switching, like...Ignored
Disliked{quote}...an indicator that can check if other indicators repaint...Ignored
Disliked{quote}...lets say 2 Lines/arrows with one representing the original non repainting value and another for the adjusted current value...Ignored