Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

duhhhh

Text Location on TS(MC)

Recommended Posts

Hello. Im a TS user

 

Im going to make chart show number at each bar on fixed location

 

but Text_SetLocation(Value, Date, Time, price)

 

only I can locate number on PRICE

 

so the number's location is different at each bar

 

how can I fix this location (ex : bottom of chart)

like above picture

 

Thank you

Untitled.png.7b2ab03a862968123c375a0cc763ce52.png

Share this post


Link to post
Share on other sites

The function is

 

Text_SetLocation(Text_ID, BarDate, BarTime, Price)

 

The last element in the brackets refers to the vertical point at which you want to set the text. Most people want to set it close to the top or bottom of the bar to which it refers, so they would specify something like:

 

Text_SetLocation(Value1, Date, Time, High + Range*.25);

 

This sets it at one quarter of the range above the high of the bar.

 

However you can set it at a fixed position e.g

 

Text_SetLocation(2, 990114, 1500, 150.00) ;

 

will fix it at price level 150 on every bar.

 

So in summary you can set it at fixed points or based upon any calculation (which may or may not include open, close, high, low, range)

 

Charlton

Share this post


Link to post
Share on other sites

thanks for your fast reply.

I forgot to mention this.

I want make ; even if I move the chart ,text remains at same location (always bottom of chart like attached pic)

or something like indicator showing text info on subgraph

is it possible?

Edited by duhhhh

Share this post


Link to post
Share on other sites
thanks for your fast reply.

I forgot to mention this.

I want make ; even if I move the chart ,text remains at same location (always bottom of chart like attached pic)

or something like indicator showing text info on subgraph

is it possible?

 

Another method I've seen is to use the function GetAppInfo which has the parameters aihighestdispvalue and ailowestdispvalue in which the assigned variable would be part of a Text_New assignment:

var3 = getappinfo (ailowestdispvalue);

txtid = text_new (var1, var2, var3, var4);

 

If memory serves me correctly, there's a good example of this in a code submission (by Tams?) a while back. Check Trading Indicators forum.

Edited by ochie

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.