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.

Tams

Multi Data Stream Analysis (EasyLanguage)

Recommended Posts

This thread is about using the EasyLanguage keyword DATA in multi data stream analysis

 

 

 

Data

 

 

Used to specify a particular data series in a multi-symbol chart;

each data series in a multi-symbol chart has a unique Data Number.

 

 

Usage

 

DataN

 

Where: N - the Data Number of the data series

 

Or (for MultiCharts):

 

Data( N )

 

Where: N - a numerical expression specifying the Data Number of the data series

 

 

Example

 

High Of Data2

will return the high price of a bar in the data series with the Data Stream #2

 

 

High Of Data( 2 )

will return the high price of a bar in the data series with the Data Stream #2

 

 

 

source: EasyLanguage manual

Share this post


Link to post
Share on other sites

TAMS

 

I don't understand

 

Is it a way 2 access to a second symbol in a chart ?

 

Or an other resolution of the same symbol in a chart ?

 

if it's a 2 stupid question, please don't answer

 

aaa

 

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

 

Data (Reserved Word)

Disclaimer

 

Reserved word used to reference information from a specified data stream.

 

Remarks

Data is normally used with a number between 1-50 that allows the specification or which data set is being referred to in terms of price values and functions calculations.

 

Examples

Close of Data3 returns the Close price of Data stream 3.

 

Low of Data10 returns the Low price of Data stream 10.

Share this post


Link to post
Share on other sites

you can use this keyword to access additional data stream.

 

the additional data stream can be of a different symbol and/or resolution.

 

 

for MultiCharts users, the resolution can also be mixed:

i.e. time based chart with non-time based chart

 

e.g.

5 min data1 with 15 min data2

5 min data1 with 2401 contract volume bar data2

5 min data1 with 500 tick data2

Share this post


Link to post
Share on other sites

The most important thing to remember with the DATA keyword, which constantly trips people up, is that you are accessing the other data only when events happen in the primary data stream. (the primary one is the one you apply the indicator to when you add it to your chart, not necessarily DATA1)

 

So, if you apply the indicator to a 5-min chart, update-intrabar turned off... then even if Data2 is a 1-tick chart, you will still only run once every 5 minutes, and Close Data2 will be the most recent close for the 1-tick chart, even if you've missed hundreds of 1-tick bars in between.

 

For this same reason, certain optimizations like AverageFC (which assumes it will "see" every bar it needs to, and only once), and any algorithm that needs to "see" every tick will generally not work across data streams and are best avoided.

 

Things are a bit more intuitive when you have update intrabar on, but it still pays to keep this in mind. Most errors I come across in multi-data indicators stem from this issue.

Share this post


Link to post
Share on other sites

Richard makes good points. In MC you can minimise the impact of this by having a 1 tick chart of the fastest instrument as data1 to 'clock' your indicator. Be aware that it's at time like this that having fairly well optimised code is important (yes I know I keep banging on about that :))

 

You can hide the 1 tick bars if you don't need them. The problem with this approach is irregular scaling, the charts X scale is done in regards to data1.

Share this post


Link to post
Share on other sites

ThanX to TAMS + Richard Todd + Blowfish 4 your Xcellent info

 

2 illustrate what have been said, here are graphs showing the problem of bar interval

 

it is not smooth + we have 2 wait the end of the bar 2 draw the avg

 

Is it the same problem that ADE which send the info only at the end of the bar ?

 

On chart 3 An other solution is to plot a 240 ( 60/5) * 20) avg directly on the 5 mn chart but it is not accurate

 

attachment.php?attachmentid=15968&stc=1&d=1259408023

 

attachment.php?attachmentid=15969&stc=1&d=1259408023

 

attachment.php?attachmentid=15970&stc=1&d=1259408023

01.JPG.0b01601dc20068c83ac7267aeca0d010.JPG

02.JPG.72a284500d06a87831d667bee0b245f2.JPG

03.JPG.12a1d9d76f5e2cfbef5133685e68c86e.JPG

Edited by aaa

Share this post


Link to post
Share on other sites

this chart illustrates the data1 and data2 application differences.

 

the resultant calculations are the same,

but the visual presentation is different.

 

 

Here's the code for data2 application.

 

note that you should not use FC functions when calculating secondary data.

 

inputs:  
Price( Close data2 ), 
Length( 9 );

variables:  
MA( 0 ) ;

MA = Average( Price, Length ) ;

Plot1( MA, "Avg" ) ;

 

 

 

attachment.php?attachmentid=15976&stc=1&d=1259420367

data2.png.51fae80806a964f43ae727041ac6a4eb.png

Share this post


Link to post
Share on other sites

Is there a way 2 eliminate steps scale ?

 

1 way is 2 plot directly the avg from data2 to data 1

 

That's what I've done here (always with step)

 

http://www.traderslaboratory.com/forums/f56/multi-data-stream-analysis-easylanguage-7165.html#post82170

 

I've read that there is a way 2 compute an avg from a hiher time w/o data2 with a limitation = it must B a multiple

 

May B on a 1 mn chart take the close of all the 5th mn and then compute the avg of the last 20 * 5 mn close ?

 

And then add each mn close from 1 to 4 th mn to the close of the last 5 mn ?

 

PS Sorry I'm not good with maths

 

I'm quite sure that TAMS will ask a mock up :haha:

Share this post


Link to post
Share on other sites
...

I'm quite sure that TAMS will ask a mock up :haha:

 

 

hahaha the steps look nice

 

:-)>

 

 

if you turn the data2 plot from a line to dots,

you will see how the calculations is done at every bar... (at the faster fractal)

Edited by Tams

Share this post


Link to post
Share on other sites

inputs:  
Price( Close data2 ), 
Length( 150 );

variables:  
MMX( 0 ) ;

MMX = XAverage( Price, Length ) ;

Plot1( MMX, "Avg" ) ;

value1 = Text_New( D, T, MMX, "~") ;

text_SetSize(value1 , 32 );

 

Tams, Would U mind 2 load this indicator modified ?

 

As U C there is a gap beetween each "dots" and the line 'hides" the gaps

 

Of course the last bar is in RT (not like with ADE) but the "dots" between each step are missing

 

It is not smooth when we plot a 150 avg 60 mn on a 1 mn chart

 

It is impossible 2 trade this way

 

No steps ( Xcept 2 heaven !)

 

In fact I know that it is possible with a function

 

But I'm not able 2 do it

 

Can someone code my "idea", if it is a good one of course !

 

I must say that I don't use any indicators 4 my trading except 3 avg

 

30

 

150

 

750

 

and my 750 avg that I use is not accurate

 

Help will B very appreciated

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.


  • Topics

  • Posts

    • ...hallucinates.... Student: “What if we gave the monkey LSD?” Guru: “The monkey already did LSD”
    • Question: To those that had/have cancer, what were the signs that made you think “something is not right here” to make you go see a doctor? Answer: So, 5/25/2018, I woke up, got ready for work, and as I walked to my car, I started gagging. Like something was stuck in my throat and I needed to clear it. And then it went away.   But 10 minutes after that, I was T-boned at 40mph on the driver side door. But what made me see a doctor was while my muscles felt better and bruises were going away, the gagging still continued, I started having fevers, my neck felt swollen, I was having such a hard time breathing, and I'd have random sharp pains in my chest, but not from where the seat belt saved me.   2 weeks after the accident, I finally see an urgent care doctor, who looks me over, tells me I'm fine, but luckily requests a neck X-ray. And I ask for a chest X-ray, which he rolls his eyes but let me have (most of my pain was in the neck, so I understand).   The very next day, he calls and says “So, that chest X-ray shows there's a 4 inch mass on your heart and lungs, and your lungs have been filling up with fluid, as well as in your pericardial (heart) wall. We need you to come in tomorrow.”   Turns out the big mass, due to the accident, caused my heart and lungs to tear and fill with fluid, the swollen neck and gagging was caused by 2 metastasized tumors, and the fevers and weight loss were symptoms. Stage 4b Hodgkin's Lymphoma.   But thankfully, we went very aggressive with chemo (and had a lot of bad side effects that don't normally happen to patients), and now I'm about 16 months cancer-free. Yay lucky X-rays! Rachel Jurina, Quora Source: https://www.quora.com/To-those-that-had-have-cancer-what-were-the-signs-that-made-you-think-something-is-not-right-here-to-make-you-go-see-a-doctor   Profits from free accurate cryptos signals: https://www.predictmag.com/  
    • As a man, the reality of life is the harshest part. I don’t mind looking older or becoming weaker over time; it’s nature.   Have you ever heard that the only people who will be loved unconditionally are women and children? Men will only be loved as long as they can provide until they are no longer needed. It doesn’t matter if you already did your best to get your kids to the best school or get the best things for them, if you stop before they’re done with it, there will be no thank you. The only thing they will remember is that they have to quit school at 15, ignoring all the previous 15 years of life you provided for them. The only people who will accept you, no matter what, are your parents. But in this situation, you might be that ungrateful child.   EDIT: Wow, I didn’t think this would get so much attention.   For those who disagree, I can only say that everyone has their problem. If you don’t get the chance to face such a thing, be grateful. Remember, sometimes what you throw in the garbage is something that someone wishes ever to have.” – ElZee, Quora   Profits from free accurate cryptos signals: https://www.predictmag.com/    
    • The good thing i had noticed so far is that the traderpot value is also on the rise..
    • yup its a gradual rollout the right way in my opinion, its really good and its exciting for the sto in 2027
×
×
  • Create New...

Important Information

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