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.

nab999

Indicator To Display H L C

Recommended Posts

Hi All,

 

Does anyone know if it is possible to get an indicator to plot like a H L C bar chart.

 

I.e. Using the standard Spread Diff indicator in TS 8.6 on a 1 min chart.

 

The indicator will move to the high and low of the spread during the bar formation, but will only plot the close.

 

Would it be possible to have it also plot the highest price that the spread went to and the lowest price that the spread went to during the formation of this 1 min bar.

 

Many thanks.

Share this post


Link to post
Share on other sites

Drop this into a new indicator and hit F3

Requires 2 data streams :) If needed you can hide both Data streams

Note the formatting comments in code. hth

 

 

// indicator iSprdDiff_OHLC


var:
oDiff(0),
hDiff(0),
lDiff(0),
cDiff(0)
;

oDiff = (o of data1) - (o of data2);
hDiff = (h of data1) - (h of data2);
lDiff = (l of data1) - (l of data2);
cDiff = (c of data1) - (c of data2);


Plot1(oDiff, "oDiff" ); // Set style to left tic 
Plot2(hDiff, "hDiff" ); // Set style to bar high
Plot3(lDiff, "lDiff" ); // Set style to bar low
Plot4(cDiff, "cDiff" ); // Set style to right tic

Edited by zdo

Share this post


Link to post
Share on other sites
Hi,

 

Many thanks for that.

 

 

 

don't just say "many thanks".

this is not primary school, you don't say "thanks" because your teacher told you to.

 

 

people have made effort and spent time investigating your problem, testing out solutions, and taking the time to make a post to explain the workaround for you.

 

the least you can do is letting people know whether this has solved your problem.

 

 

just my 2c

Share this post


Link to post
Share on other sites
don't just say "many thanks".

this is not primary school, you don't say "thanks" because your teacher told you to.

 

 

people have made effort and spent time investigating your problem, testing out solutions, and taking the time to make a post to explain the workaround for you.

 

the least you can do is letting people know whether this has solved your problem.

 

 

just my 2c

What is it with you Tams? Everywhere I go in this forum you act like an arrogant bag of shit...

Share this post


Link to post
Share on other sites
What is it with you Tams? Everywhere I go in this forum you act like an arrogant bag of shit...

 

Do you have children ?

 

or Have you experimented teaching in a classroom ?

 

Imagine that you are an intelligent father or high level talentuous teacher

 

Or both

 

loving your children or your job

 

You explained patiently and clearly and politely something a lot of time

 

And some of your children/pupils always does'nt understand or/and has a silly attitude

 

-------------

 

Then someone says that you are an arrogant bag of shit

 

Tell us ;

 

what will you say ?

 

What will you do ?

 

How will you feel ?

 

***********************************************

Share this post


Link to post
Share on other sites
Do you have children ?

 

or Have you experimented teaching in a classroom ?

 

Imagine that you are an intelligent father or high level talentuous teacher

 

Or both

 

loving your children or your job

 

You explained patiently and clearly and politely something a lot of time

 

And some of your children/pupils always does'nt understand or/and has a silly attitude

 

-------------

 

Then someone says that you are an arrogant bag of shit

 

Tell us ;

 

what will you say ?

 

What will you do ?

 

How will you feel ?

 

***********************************************

:confused: .

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.