Good day everyone, Can someone please share some code on getting arrows in this code to display text instead of arrows?
Would be greatly appreciated!
Would be greatly appreciated!
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
DislikedGood day everyone, Can someone please share some code on getting arrows in this code to display text instead of arrows? Would be greatly appreciated! {image}Ignored
DislikedHello guys, I am looking for equity manager, something like once over all equity. Please look at code attached & EA ( which currently not working ) What my aim is to monitor all open trades, once reached certain level of pips i.e 600, lock in 400pips, ( close all trade if over all pips drop back to 400 ) - if Pips increase by 1 pips, make sure increase in lock pips 400pips also increase by 1, so if total pips in profit reach at 1000, EA should protect account if pips drop back to 800pips and close all open trade. Over all it's looking on all open...Ignored
Disliked{quote} when bars changes line changes , bro {image} when indicator refresh/properties then line changes I like this indicator if problem can fixed .... btw green and red line = no problem , only for blue line (the blue line very important in this indicator)Ignored
Disliked{quote}Hello Zaimur, for the lateral zone, the most important thing is that when you detect it, jump from there, with the half trend, look for the 1.02 in 1, and you have to accompany it with a channel, zigzag for the peaks, HMA to confirm the trend, I in particular, I do not use it, luck and many pipsIgnored
DislikedAnyone knows an indicator that runs lines connecting highs and lows of the bars like this image? {image}Ignored
Disliked{quote} Whooo.... ¿Quién es el emocional aquí? Lo único que llamaría su atención es que su captura de pantalla es "parcial" y sin mostrar la página completa es una pérdida de tiempo discutir y/o explicar soluciones. Si (como dices) tienes los mismos botones: ¡entonces deberías poder ver la flecha! Con esa flecha puede arrastrar el '0' (última barra) a cualquier posición del gráfico. Si no ve la flecha, debe cambiar/adaptar el color de la 'cuadrícula'. Si esto no es lo que está buscando, entonces sea más específico en su solicitud. Espero que a pesar...Ignored
Disliked{quote} Juan, it seems to me that yesterday was a very frustrating day for you! I don't know if it was due to the date (Valentine's Day), or you did wrong the orders! just relax!! The world is not ending!!, call your camel and have him bring you a good joint! You will have another point of view!! with the frustrations, the only thing you get (from experience) is gray hair!! take care and lots of pips!!Ignored
Disliked{quote} Like this? This is a bar_chart style (not candlestick), with two SMA(1)'s added. One is based on "High" prices, the other based on "Low" prices. The upper line connects all the highs together, and similarly the lower line connects all the lows. No special indicator necessary. {image}Ignored
Disliked{quote} Something like, untested: //time of previously completed candle long t = Time[1]; //some stuff to be used bool T_any_engulf_F_only_in_rect = true;//maybe as an input with better description //only run on a new bar if(new_bar(t)){ //check for a bullish engulfing at candle 1 if(engulf_bull_check(1)==true){ //get some price that may be used later, maybe 2 prices for a range double engulf_bull_price = High[1]; //if just an alert if(T_any_engulf_F_only_in_rect){ engulf_alert("bullish engulfing"); } //if an alert and inside some manual rect drawn...Ignored
Disliked{quote} Looks sorted out in the other thread, but some points: - error 4200, you can look up the doc for error codes to see what it is - the while loop doesn't have any condition that will stop it - the return(0) inside the while loops only occur if the trendline creation fails - return(0) also stops the whole event function of start() and doesn't proceed to the other gap check, break is more appropriate - the while loop also doesn't change any conditions, the k incrementing isn't used inside the while(..), it should be an if I would put the logic...Ignored
int counted_bars = IndicatorCounted();
if (counted_bars > 0) counted_bars--;
int limit = Bars - counted_bars;
if (limit > BarsBack) limit = BarsBack;
for (int i = 0; i <= limit; i++)
{
//GapDown
if(Low[i+3] > High[i+1])
{
int j=4;
//if(Low[i+4] < Low[i+3] && Low[i+4] > High[i+1])
while(Low[i+j] < Low[i+3] && Low[i+j] > High[i+1])
{
createHLine(subWin,Time[i+j], Low[i+j], InpColorDown);
j=j+1;
}
}
//TimeCurrent() + 10 * 365 * 24 * 60 * 60, HighCandle_1, i, clrRed);
//GapUp
if(Low[i+1] > High[i+3])
{
int k=4;
//if(High[i+4] > High[i+3] && High[i+4] < Low[i+1])
while(High[i+k] > High[i+3] && High[i+k] < Low[i+1])
{
createHLine(subWin,Time[i+k], High[i+k], InpColorUp);
k=k+1;
}
}
//TimeCurrent() + 10 * 365 * 24 * 60 * 60, HighCandle_1, i, clrRed);
}
return (0); Disliked{quote}...multi-chart issues. So the indicator is obviously attached to one chart only, lets say... other 6...Ignored
Disliked{quote}I don't have the arrow that marks it, is it the same as with the dates? It stays in the middle of the graph, enlarge it to the maximum, go back with the tabulator, and decrease the size{image}Ignored