Please make an arrow on the chart for the closing of the candle when it crosses 0
Attached File(s)
www.myfxbook.com/members/AMBASSADORFX
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
DislikedHello everyone, I came accross this indicator but seem to have an issue with the price label display on the right corner of the chart when different chart zoom levels are applied. When variable 'Line TextPos' is set to a value, the position is ideal only for the selected zoom level. When zoom is adjusted, i.e. zoom in or zoom out, the label position does not adapt to it. Would it be possible to have the label position fixed to area even if different zoom level applied? Thanks a lot. {image} {image} {image} {file}Ignored
Disliked{quote} A more appropriate term may be "draw" shift, this may be what you're after. As cja mentioned above, a draw shift to the left is not very usable. Stochastc_wShift - regular stochastic but with draw shift - mtf pic shows draw shift to right and left: {file} {image}Ignored
Disliked{quote} No problem, please just consider when requesting something its best to provide as much information as possible.Here is an updated version the main difference is this one works in the Strategy Tester so you can try it and work out the best way to use the EA. NOTE: The name cannot be changed or the EA will not work. {file}
Ignored
DislikedWE ARE ON TRADE 03 LETS WAIT FOR MDD(REALIZED) BEFORE EXIT OF TRADE {image}Ignored
DislikedHello everyone, I came accross this indicator but seem to have an issue with the price label display on the right corner of the chart when different chart zoom levels are applied. When variable 'Line TextPos' is set to a value, the position is ideal only for the selected zoom level. When zoom is adjusted, i.e. zoom in or zoom out, the label position does not adapt to it. Would it be possible to have the label position fixed to area even if different zoom level applied? Thanks a lot. {image} {image} {image} {file}Ignored
DislikedCan anyone tell which is this histogram indicator?? Does anyone have its mq4 {image} {image} {file}Ignored
DislikedHello, can anyone make notifications on your phone? I would be very grateful. {file} {file}Ignored
Disliked{quote} please check this out,this doesnt open buy trades,it opened only sell trade,what could be the reason? i tried this EA on 9 pairs,all sell pending trades are opening ,no buy pending trades {image}Ignored
Disliked{quote} Friends, you are spamming this thread with unrelated posts! Nobody can deny math! If DD is much greater than TP, then sooner or later such a strategy must bring loss, overall. Psychologically this is even worse, because after a few wins the trader thinks it will always be that way - and it won't! BTW, I did take some time to look at the conditions he posted. Those conditions are everywhere, but he doesn't see them. He sees only the ones he wants to see, and ignores the less obvious ones. A code will not ignore them.Ignored
QuoteDislikedIf DD is much greater than TP, then sooner or later such a strategy must bring loss, overall.
QuoteDislikedIf DD is much greater than TP, then sooner or later such a strategy must bring loss, overall.
DislikedAbout 2 weeks ago I try asking help for coding calculate Range last 2 Bar MACD. Finally I can finish code it.....Ignored
Disliked{quote} This is another indicator by @mladen . Why don't you ask him? When the coder is known and even very popular on a number of forums, why should anybody else do the job? How about this? {file} Source: https://forex-station.com/kase-permi...472802-20.htmlIgnored
Disliked{quote}...Range2LastBarMACDBuffer[i] = int(rangeValue * 1e5); // Convert to integer and maintain precision...How to remove trailing zero .00000 , so the result is just simply whole number...Ignored
double range = buffer_atr[i] or say 0.00123 double range_as_pts_double = range/_Point; //=123.0, still a double type number int range_as_pts_int = int(range/_Point);//=123, no decimal component as int type number