Hi everyone,
I want my scrip comments to show on a black background to better read when they are on top of a candle.
I created a rectangle with OBJPROP_BACK = false. If I set background = true graphic candles will be on top of it and it will lose its intention.
I then add the comments on top of the rectangle as objects.
Here’s my code:
My problem is that it displays the line numbers (1; 2; 3; 4) and not comtext1, comtext2, etc content.
I guess the problem is in ObjectSetString(0,"ComPers"+i,OBJPROP_TEXT,comtext+i) more precisely with the comtext+i
I just don’t know how to make it correct.
Any help is most appreciated.
{ string comtext[] = { "", "===========================", " Info to by displayed", " Some other Info", "===========================", ""}; for(int i=1; i<=4; i++) { ObjectCreate(0,"ComPers"+i, OBJ_LABEL, 0, 0, 0 ); ObjectSetInteger(0,"ComPers"+i,OBJPROP_XDISTANCE,5); ObjectSetInteger(0,"ComPers"+i,OBJPROP_YDISTANCE, i * 15); ObjectSetString(0,"ComPers"+i,OBJPROP_TEXT,comtext[i]); ObjectSetInteger(0,"ComPers"+i,OBJPROP_COLOR,clrBlack); Print(comtext[i]); {
Outra questão:
É possível saber o numero de linhas de comtext[]?
Para que o numero de iterações ( i>=4) seja dinâmico e igual ao numero de linhas de comtext[].
Outra questão:
É possível saber o numero de linhas de comtext[]?
Para que o numero de iterações ( i>=4) seja dinâmico e igual ao numero de linhas de comtext[].
Se voce for fazer tipo um "terminal", eu não sei se seria melhor ser dinamico e ir "puxando" as mais antigas pra cima ou deixar pre-calculado a quantidade de labels e ir "movendo" o texto a cada nova linha...
Obrigado pela sugestão.
Ainda sou muito novato para conseguir fazer algo mais complexo.
- Aplicativos de negociação gratuitos
- 8 000+ sinais para cópia
- Notícias econômicas para análise dos mercados financeiros
Você concorda com a política do site e com os termos de uso
Hi everyone,
I want my scrip comments to show on a black background to better read when they are on top of a candle.
I created a rectangle with OBJPROP_BACK = false. If I set background = true graphic candles will be on top of it and it will lose its intention.
I then add the comments on top of the rectangle as objects.
Here’s my code:
My problem is that it displays the line numbers (1; 2; 3; 4) and not comtext1, comtext2, etc content.
I guess the problem is in ObjectSetString(0,"ComPers"+i,OBJPROP_TEXT,comtext+i) more precisely with the comtext+i
I just don’t know how to make it correct.
Any help is most appreciated.