[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Question about Text on chart



PureBytes Links

Trading Reference Links

Text objects do not support the end-of-line and carriage return characters
outputted by the NewLine function.


Best regards,

Benjamin Blanco,
EasyLanguageŽ Specialist
( former TradeStation Technologies, Inc. employee of six years )
http://www.blancofamily.net/ezlang.htm

EasyLanguage is a registered trademarks of TradeStation Technologies, Inc.

----- Original Message -----
From: "Travis Saimoto" <travis@xxxxxxxxxxxxxxxxxxx>
To: "Omega List" <omega-list@xxxxxxxxxx>
Sent: Thursday, October 03, 2002 8:39 AM
Subject: Question about Text on chart


I've coded a indicator and I want them to put a text in the chart with the
values of the indicator.  I want the values to be lined up vertically.

I've put:

If HTrend = True then WaveText = Text_New(RHDate[0], RHTime[0], RHVal[0],
NumToStr(WaveVal[0], 2)
 + NewLine + NumToStr(WaveBar[0], 0) + NewLine + NumToStr(WavePTV[0], 2));
If LTrend = True then WaveText = Text_New(RLDate[0], RLTime[0], RLVal[0],
NumToStr(WaveVal[0], 2)
 + NewLine + NumToStr(WaveBar[0], 0) + NewLine + NumToStr(WavePTV[0], 2));

The "NewLine" function gives me two boxes between the 3 value.  Is the
function broken or am I doing something wrong.  Is there any extra criterias
I need to put to setup the String, like string size or something like that?

Thanks in advance.

Travis